1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

pythonPackages.python-doi: init at 0.1.1

Required by the new papis 0.9
This commit is contained in:
Matthieu Coudron 2019-10-23 12:58:27 +09:00 committed by Jon
parent 671a8ae231
commit d0e33f172d
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{ stdenv, buildPythonPackage, fetchFromGitHub, isPy3k }:
buildPythonPackage rec {
pname = "python-doi";
version = "0.1.1";
src = fetchFromGitHub {
owner = "papis";
repo = "python-doi";
rev = "v${version}";
sha256 = "1wa5inh2a0drjswrnhjv6m23mvbfdgqj2jb8fya7q0armzp7l6fr";
};
disabled = !isPy3k;
meta = with stdenv.lib; {
description = "Python library to work with Document Object Identifiers (doi)";
homepage = https://github.com/alejandrogallo/python-doi;
maintainers = with maintainers; [ teto ];
};
}

View file

@ -6229,6 +6229,8 @@ in {
python-docx = callPackage ../development/python-modules/python-docx { };
python-doi = callPackage ../development/python-modules/python-doi { };
aiohue = callPackage ../development/python-modules/aiohue { };
PyMVGLive = callPackage ../development/python-modules/pymvglive { };