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