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