pythonPackages.seqdiag: disable python2
No longer supported upstream ``` ERROR: Package 'seqdiag' requires a different Python: 2.7.17 not in '>=3.5' ```
This commit is contained in:
parent
d186c7f1c7
commit
d6e1193d39
|
@ -1,10 +1,11 @@
|
||||||
{ stdenv, fetchurl, buildPythonPackage, pep8, nose, unittest2, docutils
|
{ stdenv, fetchurl, buildPythonPackage, isPy27, pep8, nose, unittest2, docutils
|
||||||
, blockdiag
|
, blockdiag
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "seqdiag";
|
pname = "seqdiag";
|
||||||
version = "2.0.0";
|
version = "2.0.0";
|
||||||
|
disabled = isPy27;
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://pypi/s/seqdiag/${pname}-${version}.tar.gz";
|
url = "mirror://pypi/s/seqdiag/${pname}-${version}.tar.gz";
|
||||||
|
|
Loading…
Reference in New Issue