Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-19.03 31 lines 600 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, nose 5, coverage 6}: 7 8buildPythonPackage rec { 9 pname = "isbnlib"; 10 version = "3.9.6"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "d4ae098cb31d6c678a6eac074a24f8ba4adfe7df65db13b0b2ab7355f28d6e3b"; 15 }; 16 17 checkInputs = [ 18 nose 19 coverage 20 ]; 21 22 # requires network connection 23 doCheck = false; 24 25 meta = with lib; { 26 description = "Extract, clean, transform, hyphenate and metadata for ISBNs"; 27 homepage = https://github.com/xlcnd/isbnlib; 28 license = licenses.lgpl3; 29 maintainers = with maintainers; [ dotlambda ]; 30 }; 31}