2021-01-25 00:26:54 -08:00
|
|
|
{ lib, buildPythonPackage, fetchFromGitHub, isPy3k }:
|
2019-10-22 20:58:27 -07:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "python-doi";
|
|
|
|
version = "0.1.1";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "papis";
|
|
|
|
repo = "python-doi";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "1wa5inh2a0drjswrnhjv6m23mvbfdgqj2jb8fya7q0armzp7l6fr";
|
|
|
|
};
|
|
|
|
|
|
|
|
disabled = !isPy3k;
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2019-10-22 20:58:27 -07:00
|
|
|
description = "Python library to work with Document Object Identifiers (doi)";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/alejandrogallo/python-doi";
|
2019-10-22 20:58:27 -07:00
|
|
|
maintainers = with maintainers; [ teto ];
|
|
|
|
};
|
|
|
|
}
|