about summary refs log tree commit diff
path: root/pkgs/development/python-modules/case/default.nix
blob: 0f1bba36def63495b19149cee34d1bf8b13d8628 (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;
  };
}