depot/third_party/nixpkgs/pkgs/development/python-modules/fake-useragent/default.nix
Default email a5adf1ddd8 Project import generated by Copybara.
GitOrigin-RevId: b3616bd96400ce0252c241d76fcafb64389defc6
2021-01-15 23:18:51 +01:00

22 lines
574 B
Nix

{ lib, 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 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 ];
};
}