Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 41 lines 627 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, pythonOlder 5, pytest 6, testpath 7, tornado 8, trio 9}: 10 11buildPythonPackage rec { 12 pname = "jeepney"; 13 version = "0.6.0"; 14 15 disabled = pythonOlder "3.5"; 16 17 src = fetchPypi { 18 inherit pname version; 19 sha256 = "7d59b6622675ca9e993a6bd38de845051d315f8b0c72cca3aef733a20b648657"; 20 }; 21 22 propagatedBuildInputs = [ 23 tornado 24 ]; 25 26 checkInputs = [ 27 pytest 28 testpath 29 trio 30 ]; 31 32 checkPhase = '' 33 pytest 34 ''; 35 36 meta = with lib; { 37 homepage = "https://gitlab.com/takluyver/jeepney"; 38 description = "Pure Python DBus interface"; 39 license = licenses.mit; 40 }; 41}