1{ lib
2, buildPythonPackage
3, fetchPypi
4, nose
5, coverage
6}:
7
8buildPythonPackage rec {
9 pname = "isbnlib";
10 version = "3.10.3";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "2295c01465fe19776b1f9432fd99fd24e61230d146ded2752e0d980ef6f4101f";
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}