aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/modeled/default.nix
blob: 66fe63e3daf1c81c098daaf6b09e2a4b6d1bdb03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ lib
, buildPythonPackage
, fetchPypi
, zetup
, six
, moretools
, pathpy
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "modeled";
  version = "0.1.8";

  src = fetchPypi {
    extension = "zip";
    inherit pname version;
    sha256 = "1wcl3r02q10gxy4xw7g8x2wg2sx4sbawzbfcl7a5xdydrxl4r4v4";
  };

  buildInputs = [ zetup ];

  propagatedBuildInputs = [ six moretools pathpy ];

  checkInputs = [ pytestCheckHook ];

  meta = with lib; {
    description = "Universal data modeling for Python";
    homepage = "https://bitbucket.org/userzimmermann/python-modeled";
    license = licenses.lgpl3Only;
    maintainers = [ maintainers.costrouc ];
  };
}