nixpkgs/pkgs/development/python-modules/zict/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
554 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi
, pytest, heapdict, pythonOlder }:
2018-04-03 11:33:13 +00:00
buildPythonPackage rec {
pname = "zict";
2022-02-26 02:10:58 +00:00
version = "2.1.0";
2018-04-03 11:33:13 +00:00
src = fetchPypi {
inherit pname version;
2022-02-26 02:10:58 +00:00
sha256 = "sha256-FbLMFflaR2++BiP9j3ceHncTEL96AflUEqC2BbbkdRA=";
2018-04-03 11:33:13 +00:00
};
disabled = pythonOlder "3.6";
2018-04-03 11:33:13 +00:00
buildInputs = [ pytest ];
propagatedBuildInputs = [ heapdict ];
meta = with lib; {
2018-04-03 11:33:13 +00:00
description = "Mutable mapping tools.";
homepage = "https://github.com/dask/zict";
2018-04-03 11:33:13 +00:00
license = licenses.bsd3;
maintainers = with maintainers; [ teh ];
};
}