pythonPackages.nose-parameterized: create parameterized
alias
`pythonPackages.parameterized` is the successor of `nose-parameterized` as the authors of the module decided to support more testing frameworks and stopped focusing on `noes` only. `nose-parameterized` is still available in `pypi` with version `0.6.0`, but is officially deprecated. However the renaming happened quite recently so it is possible that there are still folks relying on `nose-parameterized`. Therefore I moved the expression to provide a `pythonPackages.parameterized` derivation and added a package override which builds `nose-parameterized` after yielding a deprecation warning.
This commit is contained in:
parent
ec99a3de1b
commit
9d188f908c
@ -1,6 +1,6 @@
|
|||||||
{ stdenv, fetchPypi, buildPythonPackage, nose, six, glibcLocales, isPy3k }:
|
{ fetchPypi, parameterized }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
parameterized.overrideAttrs (o: rec {
|
||||||
pname = "nose-parameterized";
|
pname = "nose-parameterized";
|
||||||
version = "0.6.0";
|
version = "0.6.0";
|
||||||
|
|
||||||
@ -8,20 +8,4 @@ buildPythonPackage rec {
|
|||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "1khlabgib4161vn6alxsjaa8javriywgx9vydddi659gp9x6fpnk";
|
sha256 = "1khlabgib4161vn6alxsjaa8javriywgx9vydddi659gp9x6fpnk";
|
||||||
};
|
};
|
||||||
|
})
|
||||||
# Tests require some python3-isms but code works without.
|
|
||||||
doCheck = isPy3k;
|
|
||||||
|
|
||||||
buildInputs = [ nose glibcLocales ];
|
|
||||||
propagatedBuildInputs = [ six ];
|
|
||||||
|
|
||||||
checkPhase = ''
|
|
||||||
LC_ALL="en_US.UTF-8" nosetests -v
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
|
||||||
description = "Parameterized testing with any Python test framework";
|
|
||||||
homepage = https://pypi.python.org/pypi/nose-parameterized;
|
|
||||||
license = licenses.bsd3;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
28
pkgs/development/python-modules/parameterized/default.nix
Normal file
28
pkgs/development/python-modules/parameterized/default.nix
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{ stdenv, fetchPypi, buildPythonPackage, nose, six, glibcLocales, isPy3k }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "parameterized";
|
||||||
|
version = "0.6.1";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1qj1939shm48d9ql6fm1nrdy4p7sdyj8clz1szh5swwpf1qqxxfa";
|
||||||
|
};
|
||||||
|
|
||||||
|
# Tests require some python3-isms but code works without.
|
||||||
|
doCheck = isPy3k;
|
||||||
|
|
||||||
|
checkInputs = [ nose glibcLocales ];
|
||||||
|
propagatedBuildInputs = [ six ];
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
LC_ALL="en_US.UTF-8" nosetests -v
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Parameterized testing with any Python test framework";
|
||||||
|
homepage = https://pypi.python.org/pypi/parameterized;
|
||||||
|
license = licenses.bsd3;
|
||||||
|
maintainers = with maintainers; [ ma27 ];
|
||||||
|
};
|
||||||
|
}
|
@ -3839,7 +3839,8 @@ in {
|
|||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
nose-parameterized = callPackage ../development/python-modules/nose-parameterized {};
|
nose-parameterized = warn "Warning: `nose-parameterized` is deprecated! Use `parameterized` instead."
|
||||||
|
(callPackage ../development/python-modules/nose-parameterized {});
|
||||||
|
|
||||||
neurotools = buildPythonPackage (rec {
|
neurotools = buildPythonPackage (rec {
|
||||||
name = "NeuroTools-${version}";
|
name = "NeuroTools-${version}";
|
||||||
@ -12397,6 +12398,8 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
parameterized = callPackage ../development/python-modules/parameterized { };
|
||||||
|
|
||||||
paramz = callPackage ../development/python-modules/paramz { };
|
paramz = callPackage ../development/python-modules/paramz { };
|
||||||
|
|
||||||
parsel = buildPythonPackage rec {
|
parsel = buildPythonPackage rec {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user