nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

python.pkgs.sphinxcontrib-bibtex: disable python2

Support dropped in https://github.com/mcmtroffaes/sphinxcontrib-bibtex/commit/efa4e66b5a7e4c760ce37b00296c21a41f31eca1.

+3 -1
+3 -1
pkgs/development/python-modules/sphinxcontrib-bibtex/default.nix
··· 1 - { stdenv, buildPythonPackage, fetchPypi 1 + { stdenv, buildPythonPackage, fetchPypi, isPy3k 2 2 , oset, pybtex, pybtex-docutils, sphinx 3 3 }: 4 4 5 5 buildPythonPackage rec { 6 6 version = "1.0.0"; 7 7 pname = "sphinxcontrib-bibtex"; 8 + 9 + disabled = !isPy3k; 8 10 9 11 src = fetchPypi { 10 12 inherit pname version;