nixpkgs/pkgs/development/python-modules/zict/default.nix
2022-02-26 02:10:58 +00:00

25 lines
554 B
Nix

{ lib, buildPythonPackage, fetchPypi
, pytest, heapdict, pythonOlder }:
buildPythonPackage rec {
pname = "zict";
version = "2.1.0";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-FbLMFflaR2++BiP9j3ceHncTEL96AflUEqC2BbbkdRA=";
};
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 ];
};
}