linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / backports_os / default.nix
blob39973e433eedf272ab1dfbf5e9fbbae6a6ddb5f5
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , setuptools_scm
5 , future
6 , isPy3k
7 , python
8 , hypothesis
9 }:
11 buildPythonPackage rec {
12   version = "0.1.1";
13   pname = "backports.os";
14   disabled = isPy3k;
16   src = fetchPypi {
17     inherit pname version;
18     sha256 = "b472c4933094306ca08ec90b2a8cbb50c34f1fb2767775169a1c1650b7b74630";
19   };
21   buildInputs = [ setuptools_scm ];
22   checkInputs = [ hypothesis ];
23   propagatedBuildInputs = [ future ];
25   checkPhase = ''
26     ${python.interpreter} -m unittest discover tests
27   '';
29   meta = with lib; {
30     homepage = "https://github.com/pjdelport/backports.os";
31     description = "Backport of new features in Python's os module";
32     license = licenses.mit;
33     maintainers = [ maintainers.costrouc ];
34   };