pythonPackages.fake-useragent: init at 0.1.11
This commit is contained in:
parent
e25e560120
commit
091c2979ee
22
pkgs/development/python-modules/fake-useragent/default.nix
Normal file
22
pkgs/development/python-modules/fake-useragent/default.nix
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
{ stdenv, fetchPypi, buildPythonPackage, six, pytest }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "fake-useragent";
|
||||||
|
version = "0.1.11";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "0dfz3bpmjmaxlhda6hfgsac7afb65pljibi8zkp9gc0ffn5rj161";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ six ];
|
||||||
|
|
||||||
|
checkInputs = [ pytest ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Up to date simple useragent faker with real world database";
|
||||||
|
homepage = "https://github.com/hellysmile/fake-useragent";
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = with maintainers; [ evanjs ];
|
||||||
|
};
|
||||||
|
}
|
@ -2808,6 +2808,8 @@ in {
|
|||||||
|
|
||||||
fake_factory = callPackage ../development/python-modules/fake_factory { };
|
fake_factory = callPackage ../development/python-modules/fake_factory { };
|
||||||
|
|
||||||
|
fake-useragent = callPackage ../development/python-modules/fake-useragent { };
|
||||||
|
|
||||||
factory_boy = callPackage ../development/python-modules/factory_boy { };
|
factory_boy = callPackage ../development/python-modules/factory_boy { };
|
||||||
|
|
||||||
Fabric = callPackage ../development/python-modules/Fabric { };
|
Fabric = callPackage ../development/python-modules/Fabric { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user