1{ lib, buildPythonPackage, fetchPypi, isPy3k 2, nose }: 3 4let 5 pname = "crccheck"; 6 version = "1.1"; 7in buildPythonPackage { 8 inherit pname version; 9 10 checkInputs = [ nose ]; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "45962231cab62b82d05160553eebd9b60ef3ae79dc39527caef52e27f979fa96"; 15 }; 16 17 disabled = !isPy3k; 18 19 meta = with lib; { 20 description = "Python library for CRCs and checksums"; 21 homepage = "https://sourceforge.net/projects/crccheck/"; 22 license = licenses.gpl3Plus; 23 maintainers = with maintainers; [ ]; 24 platforms = platforms.linux; 25 }; 26}