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:
Jon 2020-02-16 19:09:03 -08:00
parent d186c7f1c7
commit d6e1193d39

View File

@ -1,10 +1,11 @@
{ stdenv, fetchurl, buildPythonPackage, pep8, nose, unittest2, docutils
{ stdenv, fetchurl, buildPythonPackage, isPy27, pep8, nose, unittest2, docutils
, blockdiag
}:
buildPythonPackage rec {
pname = "seqdiag";
version = "2.0.0";
disabled = isPy27;
src = fetchurl {
url = "mirror://pypi/s/seqdiag/${pname}-${version}.tar.gz";