trurl: 0.7 -> 0.8
Also drop the dependency on the Python3 `packaging` package, which was
dropped upstream with commit 3129d40 [0].
[0] 3129d40956
Signed-off-by: Christoph Heiss <christoph@c8h4.io>
This commit is contained in:
parent
bfc002e2f1
commit
0c5d52596f
1 changed files with 3 additions and 3 deletions
|
@ -2,13 +2,13 @@
|
|||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "trurl";
|
||||
version = "0.7";
|
||||
version = "0.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "curl";
|
||||
repo = pname;
|
||||
rev = "${pname}-${version}";
|
||||
hash = "sha256-2F/01FUsOa8ZqU1YHrxTD4KcJul2OEoW/RJCXoLfywg=";
|
||||
hash = "sha256-KHJMxzHqHW8WbeD6jxyuzZhuHc5x4B7fP/rYAK687ac=";
|
||||
};
|
||||
|
||||
outputs = [ "out" "dev" "man" ];
|
||||
|
@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
|||
makeFlags = [ "PREFIX=$(out)" ];
|
||||
|
||||
doCheck = true;
|
||||
nativeCheckInputs = [ python3 python3Packages.packaging ];
|
||||
nativeCheckInputs = [ python3 ];
|
||||
checkTarget = "test";
|
||||
|
||||
passthru.tests.version = testers.testVersion {
|
||||
|
|
Loading…
Reference in a new issue