Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 411 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "sexpdata"; 8 version = "1.0.0"; 9 10 src = fetchPypi { 11 inherit pname version; 12 hash = "sha256-6NX3XDeKB8bRzGH62WEbRRyTg8AlMFLhYZioUuFiBwU="; 13 }; 14 15 doCheck = false; 16 17 meta = with lib; { 18 description = "S-expression parser for Python"; 19 homepage = "https://github.com/tkf/sexpdata"; 20 license = licenses.bsd0; 21 }; 22 23}