mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 16:42:09 +00:00
pythonPackages.pydicom: disable python2, abandoned
``` Processing ./pydicom-2.0.0-py2-none-any.whl ERROR: Package 'pydicom' requires a different Python: 2.7.18 not in '>=3.5' ```
This commit is contained in:
parent
f122c08d93
commit
e897fc34b4
|
@ -1,6 +1,7 @@
|
|||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, isPy27
|
||||
, pytest
|
||||
, pytestrunner
|
||||
, numpy
|
||||
|
@ -10,6 +11,7 @@
|
|||
buildPythonPackage rec {
|
||||
version = "2.0.0";
|
||||
pname = "pydicom";
|
||||
disabled = isPy27;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
|
|
Loading…
Reference in a new issue