pythonPackages.traits: refactor move to python-modules
This commit is contained in:
@@ -0,0 +1,39 @@
|
|||||||
|
{ stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, python
|
||||||
|
, pytest
|
||||||
|
, numpy
|
||||||
|
, isPy33
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "traits";
|
||||||
|
version = "4.6.0";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "0w43qv36wnrimlh0nzzgg81315a18yza3vk494wqxf1l19g390jx";
|
||||||
|
};
|
||||||
|
|
||||||
|
# Use pytest because its easier to discover tests
|
||||||
|
buildInputs = [ pytest ];
|
||||||
|
propagatedBuildInputs = [ numpy ];
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
py.test $out/${python.sitePackages}
|
||||||
|
'';
|
||||||
|
|
||||||
|
# Test suite is broken for 3.x on latest release
|
||||||
|
# https://github.com/enthought/traits/issues/187
|
||||||
|
# https://github.com/enthought/traits/pull/188
|
||||||
|
# Furthermore, some tests fail due to being in a chroot
|
||||||
|
doCheck = isPy33;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Explicitly typed attributes for Python";
|
||||||
|
homepage = https://pypi.python.org/pypi/traits;
|
||||||
|
license = "BSD";
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
||||||
@@ -3995,36 +3995,7 @@ in {
|
|||||||
|
|
||||||
smmap2 = callPackage ../development/python-modules/smmap2 { };
|
smmap2 = callPackage ../development/python-modules/smmap2 { };
|
||||||
|
|
||||||
traits = buildPythonPackage rec {
|
traits = callPackage ../development/python-modules/traits { };
|
||||||
name = "traits-${version}";
|
|
||||||
version = "4.6.0";
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/t/traits/${name}.tar.gz";
|
|
||||||
sha256 = "0w43qv36wnrimlh0nzzgg81315a18yza3vk494wqxf1l19g390jx";
|
|
||||||
};
|
|
||||||
|
|
||||||
# Use pytest because its easier to discover tests
|
|
||||||
buildInputs = with self; [ pytest ];
|
|
||||||
checkPhase = ''
|
|
||||||
py.test $out/${python.sitePackages}
|
|
||||||
'';
|
|
||||||
|
|
||||||
# Test suite is broken for 3.x on latest release
|
|
||||||
# https://github.com/enthought/traits/issues/187
|
|
||||||
# https://github.com/enthought/traits/pull/188
|
|
||||||
# Furthermore, some tests fail due to being in a chroot
|
|
||||||
doCheck = isPy33;
|
|
||||||
|
|
||||||
propagatedBuildInputs = with self; [ numpy ];
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "Explicitly typed attributes for Python";
|
|
||||||
homepage = https://pypi.python.org/pypi/traits;
|
|
||||||
license = "BSD";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
transaction = callPackage ../development/python-modules/transaction { };
|
transaction = callPackage ../development/python-modules/transaction { };
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user