mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
pythonPackages.repeated_test : init at 0.1a3
This commit is contained in:
parent
31d76ae1b1
commit
130078a73a
@ -26588,4 +26588,27 @@ in modules // {
|
||||
maintainers = with maintainers; [];
|
||||
};
|
||||
};
|
||||
|
||||
repeated_test = buildPythonPackage rec {
|
||||
name = "repeated_test-${version}";
|
||||
version = "0.1a3";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/r/repeated-test/${name}.tar.gz";
|
||||
sha256 = "062syp7kl2g0x6qx3z8zb5sdycpi7qcpxp9iml2v8dqzqnij9bpg";
|
||||
};
|
||||
|
||||
buildInputs = with self; [
|
||||
unittest2
|
||||
];
|
||||
propagatedBuildInputs = with self; [
|
||||
six
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "A quick unittest-compatible framework for repeating a test function over many fixtures";
|
||||
homepage = "https://github.com/epsy/repeated_test";
|
||||
license = licenses.mit;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user