nixpkgs/pkgs/development/python-modules/zict/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

25 lines
552 B
Nix

{ lib, buildPythonPackage, fetchPypi
, pytest, heapdict, pythonOlder }:
buildPythonPackage rec {
pname = "zict";
version = "2.2.0";
src = fetchPypi {
inherit pname version;
hash = "sha256-1zZsLiKTMUES3PJDIQhCime5J7AABWGf7vwxDRLYM/M=";
};
disabled = pythonOlder "3.6";
buildInputs = [ pytest ];
propagatedBuildInputs = [ heapdict ];
meta = with lib; {
description = "Mutable mapping tools.";
homepage = "https://github.com/dask/zict";
license = licenses.bsd3;
maintainers = with maintainers; [ teh ];
};
}