1 { lib, buildPythonPackage, pythonOlder, fetchFromSourcehut
2 , kubo, packaging, tomli }:
4 buildPythonPackage rec {
8 disabled = pythonOlder "3.6";
10 src = fetchFromSourcehut {
14 sha256 = "sha256-YaIYcoUnbiv9wUOFIzGj2sWGbh7NsqRQcqOR2X6+QZA=";
17 buildInputs = [ kubo ];
18 propagatedBuildInputs = [ packaging tomli ];
19 doCheck = false; # there's no test
20 pythonImportsCheck = [ "ipwhl" ];
23 description = "Utilities for the InterPlanetary Wheels";
24 homepage = "https://git.sr.ht/~cnx/ipwhl-utils";
25 license = licenses.agpl3Plus;
26 maintainers = [ maintainers.McSinyx ];