forked from mirrors/nixpkgs
pythonPackages.bcdoc: Move to own file
This commit is contained in:
parent
fd15953272
commit
5fe48723fa
22
pkgs/development/python-modules/bcdoc/default.nix
Normal file
22
pkgs/development/python-modules/bcdoc/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
{ stdenv, buildPythonPackage, fetchPypi, docutils, six }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "bcdoc";
|
||||||
|
version = "0.14.0";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1s2kdqs1n2mj7wq3w0pq30zs7vxq0l3abik2clqnc4hm2j7crbk8";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ docutils six ];
|
||||||
|
|
||||||
|
# Tests fail due to nix file timestamp normalization.
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://github.com/botocore/bcdoc;
|
||||||
|
license = licenses.asl20;
|
||||||
|
description = "ReST document generation tools for botocore";
|
||||||
|
};
|
||||||
|
}
|
|
@ -923,25 +923,7 @@ in {
|
||||||
|
|
||||||
batinfo = callPackage ../development/python-modules/batinfo {};
|
batinfo = callPackage ../development/python-modules/batinfo {};
|
||||||
|
|
||||||
bcdoc = buildPythonPackage rec {
|
bcdoc = callPackage ../development/python-modules/bcdoc {};
|
||||||
name = "bcdoc-0.14.0";
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/b/bcdoc/${name}.tar.gz";
|
|
||||||
sha256 = "1s2kdqs1n2mj7wq3w0pq30zs7vxq0l3abik2clqnc4hm2j7crbk8";
|
|
||||||
};
|
|
||||||
|
|
||||||
buildInputs = with self; [ docutils six ];
|
|
||||||
|
|
||||||
# Tests fail due to nix file timestamp normalization.
|
|
||||||
doCheck = false;
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
homepage = https://github.com/botocore/bcdoc;
|
|
||||||
license = licenses.asl20;
|
|
||||||
description = "ReST document generation tools for botocore";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
beautifulsoup4 = callPackage ../development/python-modules/beautifulsoup4 { };
|
beautifulsoup4 = callPackage ../development/python-modules/beautifulsoup4 { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue