python3Packages.cachy: modernize
This commit is contained in:
@@ -8,14 +8,16 @@
|
||||
msgpack,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
buildPythonPackage (finalAttrs: {
|
||||
pname = "cachy";
|
||||
version = "0.3.0";
|
||||
pyproject = true;
|
||||
|
||||
__structuredAttrs = true;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "186581f4ceb42a0bbe040c407da73c14092379b1e4c0e327fdb72ae4a9b269b1";
|
||||
inherit (finalAttrs) pname version;
|
||||
hash = "sha256-GGWB9M60Kgu+BAxAfac8FAkjebHkwOMn/bcq5KmyabE=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
@@ -31,10 +33,12 @@ buildPythonPackage rec {
|
||||
# https://github.com/NixOS/nixpkgs/pull/53599#discussion_r245855665
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "cachy" ];
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/sdispater/cachy";
|
||||
description = "Cachy provides a simple yet effective caching library";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ jakewaksbaum ];
|
||||
};
|
||||
}
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user