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
python3Packages.yapsy: use pytest and enable darwin
Carl Thomé
2 years ago
5c5a360e
0a131c13
+5
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
yapsy
default.nix
+5
-2
pkgs/development/python-modules/yapsy/default.nix
reviewed
···
2
2
, stdenv
3
3
, buildPythonPackage
4
4
, fetchPypi
5
5
+
, pytestCheckHook
5
6
}:
6
7
7
8
buildPythonPackage rec {
···
15
14
sha256 = "12rznbnswfw0w7qfbvmmffr9r317gl1rqg36nijwzsklkjgks4fq";
16
15
};
17
16
17
17
+
nativeCheckInputs = [ pytestCheckHook ];
18
18
+
19
19
+
pythonImportsCheck = [ "yapsy" ];
20
20
+
18
21
meta = with lib; {
19
22
homepage = "https://yapsy.sourceforge.net/";
20
23
description = "Yet another plugin system";
21
24
license = licenses.bsd0;
22
22
-
# tests fail and are not using pytest to easily disable them
23
23
-
broken = stdenv.isDarwin;
24
25
};
25
26
}