My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pybtex-docutils/default.nix

20 lines
507 B

{ lib, buildPythonPackage, fetchPypi, docutils, pybtex, six }:
buildPythonPackage rec {
version = "1.0.1";
pname = "pybtex-docutils";
doCheck = false;
buildInputs = [ docutils pybtex six ];
src = fetchPypi {
inherit pname version;
sha256 = "d53aa0c31dc94d61fd30ea3f06c749e6f510f9ff0e78cb2765a9300f173d8626";
};
meta = with lib; {
description = "A docutils backend for pybtex";
homepage = "https://github.com/mcmtroffaes/pybtex-docutils";
license = licenses.mit;
};
}