python3Packages.rfc6555: remove obsolete input

This commit is contained in:
Fabian Affolter 2022-04-21 09:41:28 +02:00
parent b161e729ab
commit 9a1740da38

View file

@ -2,7 +2,7 @@
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchFromGitHub
, pytestCheckHook , pytestCheckHook
, selectors2 , pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -10,17 +10,15 @@ buildPythonPackage rec {
version = "0.1.0"; version = "0.1.0";
format = "setuptools"; format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "sethmlarson"; owner = "sethmlarson";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "Lmwgusc4EQlF0GHmMTUxWzUCjBk19cvurNwbOnT+1jM="; hash = "sha256-Lmwgusc4EQlF0GHmMTUxWzUCjBk19cvurNwbOnT+1jM=";
}; };
propagatedBuildInputs = [
selectors2
];
checkInputs = [ checkInputs = [
pytestCheckHook pytestCheckHook
]; ];