nixpkgs/pkgs/development/python-modules/zict/default.nix
R. RyanTM 527fb18264 python37Packages.zict: 0.1.4 -> 1.0.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-zict/versions
2019-08-20 13:49:14 -07:00

23 lines
517 B
Nix

{ stdenv, buildPythonPackage, fetchPypi
, pytest, heapdict }:
buildPythonPackage rec {
pname = "zict";
version = "1.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "04532600mnsvzv43l2jvjrn7sflg0wkjqzy7nj7m3vvxm5gd4kg3";
};
buildInputs = [ pytest ];
propagatedBuildInputs = [ heapdict ];
meta = with stdenv.lib; {
description = "Mutable mapping tools.";
homepage = https://github.com/dask/zict;
license = licenses.bsd3;
maintainers = with maintainers; [ teh ];
};
}