about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/case/default.nix
blob: 771a349be1f77f3ff7afb180f04abe770343e9aa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, buildPythonPackage, fetchPypi
, six, nose, unittest2, mock }:

buildPythonPackage rec {
  pname = "case";
  version = "1.5.3";

  src = fetchPypi {
    inherit pname version;
    sha256 = "48432b01d91913451c3512c5b90e31b0f348f1074b166a3431085eb70d784fb1";
  };

  propagatedBuildInputs = [ six nose unittest2 mock ];

  meta = with stdenv.lib; {
    homepage = "https://github.com/celery/case";
    description = "unittests utilities";
    license = licenses.bsd3;
  };
}