mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
21 lines
482 B
Nix
21 lines
482 B
Nix
{ 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;
|
|
};
|
|
}
|