depot/third_party/nixpkgs/pkgs/development/python-modules/numtraits/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

32 lines
612 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pytest
, six
, numpy
, traitlets
}:
buildPythonPackage rec {
pname = "numtraits";
version = "0.2";
src = fetchPypi {
inherit pname version;
sha256 = "2fca9a6c9334f7358ef1a3e2e64ccaa6a479fc99fc096910e0d5fbe8edcdfd7e";
};
checkInputs = [ pytest ];
propagatedBuildInputs = [ six numpy traitlets];
checkPhase = ''
py.test
'';
meta = {
description = "Numerical traits for Python objects";
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ fridh ];
homepage = "https://github.com/astrofrog/numtraits";
};
}