mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
testscenarios: Add derivation
This commit is contained in:
parent
40e433f6ff
commit
312f812c40
@ -10140,6 +10140,25 @@ let
|
||||
};
|
||||
|
||||
|
||||
testscenarios = buildPythonPackage rec {
|
||||
name = "testscenarios-${version}";
|
||||
version = "0.4";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/t/testscenarios/${name}.tar.gz";
|
||||
sha256 = "1671jvrvqlmbnc42j7pc5y6vc37q44aiwrq0zic652pxyy2fxvjg";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with self; [ testtools ];
|
||||
|
||||
meta = {
|
||||
description = "a pyunit extension for dependency injection";
|
||||
homepage = https://pypi.python.org/pypi/testscenarios;
|
||||
license = licenses.asl20;
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
testtools = buildPythonPackage rec {
|
||||
name = "testtools-${version}";
|
||||
version = "0.9.34";
|
||||
|
Loading…
Reference in New Issue
Block a user