mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
pythonPackages.pybtex-docutils: init at 0.2.1
This commit is contained in:
parent
5210122969
commit
e8a588894e
20
pkgs/development/python-modules/pybtex-docutils/default.nix
Normal file
20
pkgs/development/python-modules/pybtex-docutils/default.nix
Normal file
@ -0,0 +1,20 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi, docutils, pybtex, six }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
version = "0.2.1";
|
||||
pname = "pybtex-docutils";
|
||||
|
||||
doCheck = false;
|
||||
buildInputs = [ docutils pybtex six ];
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0dqk4lplij7rbqqi4dbpw3wzr4wj08ysswvdibls6s0x3ij7bc74";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "A docutils backend for pybtex";
|
||||
homepage = "https://github.com/mcmtroffaes/pybtex-docutils";
|
||||
license = stdenv.lib.licenses.mit;
|
||||
};
|
||||
}
|
@ -5970,6 +5970,8 @@ in {
|
||||
|
||||
pybtex = callPackage ../development/python-modules/pybtex {};
|
||||
|
||||
pybtex-docutils = callPackage ../development/python-modules/pybtex-docutils {};
|
||||
|
||||
pycallgraph = buildPythonPackage rec {
|
||||
name = "pycallgraph-${version}";
|
||||
version = "1.0.1";
|
||||
|
Loading…
Reference in New Issue
Block a user