1
0
Fork 1
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:
Jonathan Ringer 2020-06-25 21:54:41 -07:00 committed by Jon
parent f122c08d93
commit e897fc34b4

View file

@ -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;