pythonPackages.fake_factory: refactor move to python-modules
This commit is contained in:
committed by
Frederik Rietdijk
parent
9ffd373ff1
commit
09d6b372d6
33
pkgs/development/python-modules/fake_factory/default.nix
Normal file
33
pkgs/development/python-modules/fake_factory/default.nix
Normal file
@@ -0,0 +1,33 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, python
|
||||
, six
|
||||
, dateutil
|
||||
, ipaddress
|
||||
, mock
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "fake-factory";
|
||||
version = "0.6.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "09sgk0kylsshs64a1xsz3qr187sbnqrbf4z8k3dgsy32lsgyffv2";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ six dateutil ipaddress mock ];
|
||||
checkPhase = ''
|
||||
${python.interpreter} -m unittest faker.tests
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A Python package that generates fake data for you";
|
||||
homepage = https://pypi.python.org/pypi/fake-factory;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ lovek323 ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user