tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
python39Packages.ismartgate: disable failing tests
Fabian Affolter
4 years ago
253e99ce
120fd263
+12
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
ismartgate
default.nix
+12
-2
pkgs/development/python-modules/ismartgate/default.nix
reviewed
···
18
18
buildPythonPackage rec {
19
19
pname = "ismartgate";
20
20
version = "4.0.4";
21
21
+
format = "setuptools";
22
22
+
21
23
disabled = pythonOlder "3.7";
22
24
23
25
src = fetchFromGitHub {
24
26
owner = "bdraco";
25
27
repo = pname;
26
28
rev = "v${version}";
27
27
-
sha256 = "sha256-yh7gPyy3VMdyINBCZo5K2wA0BY7yYgHrKGZRB/pm77U=";
29
29
+
hash = "sha256-yh7gPyy3VMdyINBCZo5K2wA0BY7yYgHrKGZRB/pm77U=";
28
30
};
29
31
30
32
propagatedBuildInputs = [
···
51
49
--replace '"pytest-runner>=5.2",' ""
52
50
'';
53
51
54
54
-
pythonImportsCheck = [ "ismartgate" ];
52
52
+
pythonImportsCheck = [
53
53
+
"ismartgate"
54
54
+
];
55
55
+
56
56
+
disabledTestPaths = [
57
57
+
# Tests are out-dated
58
58
+
"ismartgate/tests/test_init.py"
59
59
+
];
60
60
+
55
61
56
62
meta = with lib; {
57
63
description = "Python module to work with the ismartgate and gogogate2 API";