nixpkgs/pkgs/development/python-modules/surepy/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

72 lines
1.3 KiB
Nix

{ lib
, aiodns
, aiohttp
, async-timeout
, attrs
, brotlipy
, buildPythonPackage
, faust-cchardet
, click
, colorama
, fetchFromGitHub
, halo
, poetry-core
, pythonOlder
, requests
, rich
}:
buildPythonPackage rec {
pname = "surepy";
version = "0.8.0";
format = "pyproject";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "benleb";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-/fgNznsucjHPO44lK4tk5tDJHKjCJEbPtOO7YHmDcRQ=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace 'aiohttp = {extras = ["speedups"], version = "^3.7.4"}' 'aiohttp = {extras = ["speedups"], version = ">=3.7.4"}' \
--replace 'async-timeout = "^3.0.1"' 'async-timeout = ">=3.0.1"' \
--replace 'rich = "^10.1.0"' 'rich = ">=10.1.0"'
'';
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
aiodns
aiohttp
async-timeout
attrs
brotlipy
click
colorama
faust-cchardet
halo
requests
rich
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [
"surepy"
];
meta = with lib; {
description = "Python library to interact with the Sure Petcare API";
homepage = "https://github.com/benleb/surepy";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}