mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 18:33:00 +00:00
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
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "seqdiag";
|
||||
version = "2.0.0";
|
||||
disabled = isPy27;
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://pypi/s/seqdiag/${pname}-${version}.tar.gz";
|
||||
|
Loading…
Reference in New Issue
Block a user