tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.convertdate: 2.3.1 -> 2.3.2
Fabian Affolter
4 years ago
dcbfa026
c47eacf4
+5
-4
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
convertdate
default.nix
+5
-4
pkgs/development/python-modules/convertdate/default.nix
···
9
9
10
10
buildPythonPackage rec {
11
11
pname = "convertdate";
12
12
-
version = "2.3.1";
13
13
-
12
12
+
version = "2.3.2";
14
13
disabled = isPy27;
15
14
16
15
# Tests are not available in the PyPI tarball so use GitHub instead.
17
16
src = fetchFromGitHub {
18
17
owner = "fitnr";
19
18
repo = pname;
20
20
-
rev = version;
21
21
-
sha256 = "1g8sgd3xc9viy0kb1i4xp6bdn1hzwhrnk8kmismla88scivrhq32";
19
19
+
rev = "v${version}";
20
20
+
sha256 = "0k7j59sbqwyi72vcjx5vsh3qb6hxfnkfjkd2i6f6lckdr1bkh7fz";
22
21
};
23
22
24
23
propagatedBuildInputs = [
···
29
28
checkInputs = [
30
29
pytestCheckHook
31
30
];
31
31
+
32
32
+
pythonImportsCheck = [ "convertdate" ];
32
33
33
34
meta = with lib; {
34
35
homepage = "https://github.com/fitnr/convertdate";