linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / modeled / default.nix
blobacf8ee4c11232c1941afd9aa84069ae58953d36b
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , zetup
5 , six
6 , moretools
7 , pathpy
8 , pytestCheckHook
9 }:
11 buildPythonPackage rec {
12   pname = "modeled";
13   version = "0.1.8";
15   src = fetchPypi {
16     extension = "zip";
17     inherit pname version;
18     sha256 = "1wcl3r02q10gxy4xw7g8x2wg2sx4sbawzbfcl7a5xdydrxl4r4v4";
19   };
21   buildInputs = [ zetup ];
23   propagatedBuildInputs = [ six moretools pathpy ];
25   checkInputs = [ pytestCheckHook ];
27   pythonImportsCheck = [ "modeled" ];
29   meta = with lib; {
30     description = "Universal data modeling for Python";
31     homepage = "https://github.com/modeled/modeled";
32     license = licenses.lgpl3Only;
33     maintainers = [ maintainers.costrouc ];
34   };