Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 538 B view raw
1{ lib, buildPythonPackage, fetchPypi, future }: 2 3buildPythonPackage rec { 4 pname = "atom"; 5 version = "0.4.3"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "ce96fb50326a3bfa084463dbde1cf2e02c92735e5bc324d836355c25af87e0ae"; 10 }; 11 12 propagatedBuildInputs = [ future ]; 13 14 # Tests not released to pypi 15 doCheck = true; 16 17 meta = with lib; { 18 description = "Memory efficient Python objects"; 19 maintainers = [ maintainers.bhipple ]; 20 homepage = https://github.com/nucleic/atom; 21 license = licenses.bsd3; 22 }; 23}