Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 560 B view raw
1{ stdenv, buildPythonPackage, fetchPypi 2, nose }: 3 4buildPythonPackage rec { 5 pname = "crccheck"; 6 version = "0.6"; 7 8 buildInputs = [ nose ]; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "0ckymm6s5kw08i1j35fy2cfha1hyq94pq1kc66brb552qgjs91jn"; 13 extension = "zip"; 14 }; 15 16 meta = with stdenv.lib; { 17 description = "Python library for CRCs and checksums"; 18 homepage = "https://bitbucket.org/martin_scharrer/crccheck"; 19 license = licenses.gpl3Plus; 20 maintainers = with maintainers; [ etu ]; 21 platforms = platforms.linux; 22 }; 23}