mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-08 21:24:03 +00:00
python311Packages.aiohttp-client-cache: Use standard packaging
This commit is contained in:
parent
8a16f9a618
commit
06354636e7
@ -1,6 +1,14 @@
|
||||
{ lib, fetchPypi, python3, ...}:
|
||||
{ lib
|
||||
, fetchPypi
|
||||
, buildPythonPackage
|
||||
, poetry-core
|
||||
, aiohttp
|
||||
, attrs
|
||||
, itsdangerous
|
||||
, url-normalize
|
||||
}:
|
||||
|
||||
python3.pkgs.buildPythonPackage rec {
|
||||
buildPythonPackage rec {
|
||||
pname = "aiohttp_client_cache";
|
||||
version = "0.11.0";
|
||||
pyproject = true;
|
||||
@ -8,10 +16,10 @@ python3.pkgs.buildPythonPackage rec {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-B2b/9O2gVJjHUlN0pYeBDcwsy3slaAnd5SroeQqEU+s=";
|
||||
};
|
||||
nativeBuildInputs = with python3.pkgs; [
|
||||
nativeBuildInputs = [
|
||||
poetry-core
|
||||
];
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
propagatedBuildInputs = [
|
||||
aiohttp
|
||||
attrs
|
||||
itsdangerous
|
||||
|
Loading…
Reference in New Issue
Block a user