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