linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / jeepney / default.nix
blob84096c6db4f9287c761b1f85bb4438f823d260ee
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pythonOlder
5 , pytest
6 , testpath
7 , tornado
8 , trio
9 }:
11 buildPythonPackage rec {
12   pname = "jeepney";
13   version = "0.6.0";
15   disabled = pythonOlder "3.5";
17   src = fetchPypi {
18     inherit pname version;
19     sha256 = "7d59b6622675ca9e993a6bd38de845051d315f8b0c72cca3aef733a20b648657";
20   };
22   propagatedBuildInputs = [
23     tornado
24   ];
26   checkInputs = [
27     pytest
28     testpath
29     trio
30   ];
32   checkPhase = ''
33     pytest
34   '';
36   meta = with lib; {
37     homepage = "https://gitlab.com/takluyver/jeepney";
38     description = "Pure Python DBus interface";
39     license = licenses.mit;
40   };