mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
pythonPackages.breathe: disable for Python 3.x
This commit is contained in:
parent
46ff1c385f
commit
a441efcccc
@ -1,4 +1,4 @@
|
|||||||
{ lib, fetchurl, buildPythonPackage, docutils, six, sphinx }:
|
{ lib, fetchurl, buildPythonPackage, docutils, six, sphinx, isPy3k }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
name = "breathe-${version}";
|
name = "breathe-${version}";
|
||||||
@ -11,6 +11,8 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
propagatedBuildInputs = [ docutils six sphinx ];
|
propagatedBuildInputs = [ docutils six sphinx ];
|
||||||
|
|
||||||
|
disabled = isPy3k;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = https://github.com/michaeljones/breathe;
|
homepage = https://github.com/michaeljones/breathe;
|
||||||
license = lib.licenses.bsd3;
|
license = lib.licenses.bsd3;
|
||||||
|
Loading…
Reference in New Issue
Block a user