Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / oocsi / default.nix
blob0739098913896b98cdbd7b7b23d569acdc55994e
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pythonOlder
5 }:
7 buildPythonPackage rec {
8   pname = "oocsi";
9   version = "0.4.3";
10   format = "setuptools";
12   disabled = pythonOlder "3.8";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-AgDBsPoi0aQ6uglc7Zl4gxVmeyDCysoef5vZpxgwE/Q=";
17   };
19   # Tests are not shipped
20   doCheck = false;
22   pythonImportsCheck = [
23     "oocsi"
24   ];
26   meta = with lib; {
27     description = "OOCSI library for Python";
28     homepage = "https://github.com/iddi/oocsi-python";
29     license = with licenses; [ mit ];
30     maintainers = with maintainers; [ fab ];
31   };