Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / traits / default.nix
blob47b5eef29cedefbd9ec34ec9374c01bf7844abd4
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pythonOlder
5 , numpy
6 , pytestCheckHook
7 }:
9 buildPythonPackage rec {
10   pname = "traits";
11   version = "6.4.3";
12   format = "setuptools";
14   disabled = pythonOlder "3.6";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-qbv9ngwIt94H6G72TmnLlqKcIQWkO/gyzYsWL6HiL0Q=";
19   };
21   # Circular dependency
22   doCheck = false;
24   pythonImportsCheck = [
25     "traits"
26   ];
28   meta = with lib; {
29     description = "Explicitly typed attributes for Python";
30     homepage = "https://pypi.python.org/pypi/traits";
31     license = licenses.bsd3;
32     maintainers = with maintainers; [ ];
33   };