mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
527fb18264
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
23 lines
517 B
Nix
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 ];
|
|
};
|
|
}
|