about summary refs log tree commit diff
path: root/pkgs/development/python-modules/testscenarios/default.nix
blob: 61e2ce5a81e91e0a0ba83cdc6620056f9e4aa239 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv
, buildPythonPackage
, fetchPypi
, testtools
}:

buildPythonPackage rec {
  pname = "testscenarios";
  version = "0.4";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1671jvrvqlmbnc42j7pc5y6vc37q44aiwrq0zic652pxyy2fxvjg";
  };

  propagatedBuildInputs = [ testtools ];

  meta = with stdenv.lib; {
    description = "A pyunit extension for dependency injection";
    homepage = https://pypi.python.org/pypi/testscenarios;
    license = licenses.asl20;
  };

}