mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 03:12:51 +00:00
python310Packages.jaraco-logging: disable on unsupported Python releases
- remove six
This commit is contained in:
parent
61e80c46c3
commit
8e72b02220
@ -1,10 +1,10 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
, setuptools
|
||||
, setuptools-scm
|
||||
, tempora
|
||||
, six
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
@ -12,6 +12,8 @@ buildPythonPackage rec {
|
||||
version = "3.2.0";
|
||||
format = "pyproject";
|
||||
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
src = fetchPypi {
|
||||
pname = "jaraco.logging";
|
||||
inherit version;
|
||||
@ -29,7 +31,6 @@ buildPythonPackage rec {
|
||||
|
||||
propagatedBuildInputs = [
|
||||
tempora
|
||||
six
|
||||
];
|
||||
|
||||
# test no longer packaged with pypi
|
||||
|
Loading…
Reference in New Issue
Block a user