nixpkgs/pkgs/development/python-modules/traits/default.nix
2023-08-14 01:01:39 +00:00

35 lines
627 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, numpy
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "traits";
version = "6.4.2";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-W+fMX7epnLp+kBR4Y3PjrS9177RF7s7QlGVLuvOw+oI=";
};
# Circular dependency
doCheck = false;
pythonImportsCheck = [
"traits"
];
meta = with lib; {
description = "Explicitly typed attributes for Python";
homepage = "https://pypi.python.org/pypi/traits";
license = licenses.bsd3;
maintainers = with maintainers; [ ];
};
}