pythonPackages.fudge: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov
2018-10-15 15:55:39 -04:00
committed by Frederik Rietdijk
parent 49a61ab978
commit c9b960cdff
2 changed files with 41 additions and 20 deletions

View File

@@ -0,0 +1,34 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, nose
, nosejs
, sphinx
, isPy3k
}:
buildPythonPackage rec {
pname = "fudge";
version = "1.1.0";
disabled = isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "eba59a926fa1df1ab6dddd69a7a8af21865b16cad800cb4d1af75070b0f52afb";
};
buildInputs = [ nose nosejs ];
propagatedBuildInputs = [ sphinx ];
checkPhase = ''
nosetests -v
'';
meta = with stdenv.lib; {
homepage = https://github.com/fudge-py/fudge;
description = "Replace real objects with fakes (mocks, stubs, etc) while testing";
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};
}