My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/zict/default.nix

24 lines
554 B

{ 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 ];
};
}