depot/third_party/nixpkgs/pkgs/development/python-modules/fake-useragent/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

55 lines
1.1 KiB
Nix

{ lib
, fetchFromGitHub
, buildPythonPackage
, importlib-metadata
, importlib-resources
, setuptools
, pythonOlder
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "fake-useragent";
version = "1.4.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "fake-useragent";
repo = "fake-useragent";
rev = "refs/tags/${version}";
hash = "sha256-Jmzq0yIM373bg2T6t0YFymBiH9vSpiCw+UAMfxsMJvY=";
};
postPatch = ''
sed -i '/addopts/d' pytest.ini
'';
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
] ++ lib.optionals (pythonOlder "3.10") [
importlib-resources
] ++ lib.optionals (pythonOlder "3.8") [
importlib-metadata
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"fake_useragent"
];
meta = with lib; {
description = "Up to date simple useragent faker with real world database";
homepage = "https://github.com/hellysmile/fake-useragent";
changelog = "https://github.com/fake-useragent/fake-useragent/releases/tag/${version}";
license = licenses.asl20;
maintainers = with maintainers; [ evanjs ];
};
}