Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-19.03 21 lines 430 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "purepng"; 8 version = "0.2.0"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "1kcl7a6d7d59360fbz2jwfk6ha6pmqgn396962p4s62j893d2r0d"; 13 }; 14 15 meta = with stdenv.lib; { 16 description = "Pure Python library for PNG image encoding/decoding"; 17 homepage = https://github.com/scondo/purepng; 18 license = licenses.mit; 19 }; 20 21}