python.pkgs.numtraits: move expression

This commit is contained in:
Frederik Rietdijk
2017-10-29 13:41:46 +01:00
parent 4ad0e0da32
commit 5c2d2cbff3
2 changed files with 34 additions and 24 deletions

View File

@@ -0,0 +1,33 @@
{ lib
, buildPythonPackage
, fetchPypi
, pytest
, six
, numpy
, traitlets
}:
buildPythonPackage rec {
pname = "numtraits";
version = "0.2";
name = "${pname}-${version}";
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;
};
}