python310Packages.clize: remove postPatch

- disable on older Python releases
main
Fabian Affolter 2 years ago committed by GitHub
parent b362f100ac
commit 0492580bef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 36
      pkgs/development/python-modules/clize/default.nix

@ -1,24 +1,15 @@
{ lib
, attrs
, buildPythonPackage
, docutils
, fetchPypi
# build
, setuptools
# propagtes
, sigtools
, six
, attrs
, od
, docutils
# extras: datetime
, python-dateutil
# tests
, pygments
, unittest2
, pytestCheckHook
, python-dateutil
, setuptools
, sigtools
, unittest2
}:
buildPythonPackage rec {
@ -26,17 +17,13 @@ buildPythonPackage rec {
version = "5.0.0";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-/cFpEvAN/Movd38xaE53Y+D9EYg/SFyHeqtlVUo1D0I=";
hash = "sha256-/cFpEvAN/Movd38xaE53Y+D9EYg/SFyHeqtlVUo1D0I=";
};
postPatch = ''
substituteInPlace setup.py \
--replace "docutils ~= 0.17.0" "docutils" \
--replace "attrs>=19.1.0,<22" "attrs>=19.1.0"
'';
nativeBuildInputs = [
setuptools
];
@ -46,7 +33,6 @@ buildPythonPackage rec {
docutils
od
sigtools
six
];
passthru.optional-dependencies = {
@ -65,7 +51,9 @@ buildPythonPackage rec {
unittest2
];
pythonImportsCheck = [ "clize" ];
pythonImportsCheck = [
"clize"
];
meta = with lib; {
description = "Command-line argument parsing for Python";

Loading…
Cancel
Save