nixpkgs/pkgs/development/python-modules/isbnlib/default.nix
2019-05-27 15:48:19 +02:00

32 lines
600 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, nose
, coverage
}:
buildPythonPackage rec {
pname = "isbnlib";
version = "3.9.8";
src = fetchPypi {
inherit pname version;
sha256 = "ca27dc15763759d038a22f4e05d849acc121ffcb8ffe008768f09a0d844f7172";
};
checkInputs = [
nose
coverage
];
# requires network connection
doCheck = false;
meta = with lib; {
description = "Extract, clean, transform, hyphenate and metadata for ISBNs";
homepage = https://github.com/xlcnd/isbnlib;
license = licenses.lgpl3;
maintainers = with maintainers; [ dotlambda ];
};
}