diff --git a/pkgs/development/python-modules/cachy/default.nix b/pkgs/development/python-modules/cachy/default.nix index 393214ff3184..fbf8d9bddcdf 100644 --- a/pkgs/development/python-modules/cachy/default.nix +++ b/pkgs/development/python-modules/cachy/default.nix @@ -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 ]; }; -} +})