nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 22.05 24 lines 554 B view raw
1{ lib, buildPythonPackage, fetchPypi 2, pytest, heapdict, pythonOlder }: 3 4buildPythonPackage rec { 5 pname = "zict"; 6 version = "2.1.0"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "sha256-FbLMFflaR2++BiP9j3ceHncTEL96AflUEqC2BbbkdRA="; 11 }; 12 13 disabled = pythonOlder "3.6"; 14 15 buildInputs = [ pytest ]; 16 propagatedBuildInputs = [ heapdict ]; 17 18 meta = with lib; { 19 description = "Mutable mapping tools."; 20 homepage = "https://github.com/dask/zict"; 21 license = licenses.bsd3; 22 maintainers = with maintainers; [ teh ]; 23 }; 24}