Merge pull request #169548 from fabaff/rfc6555-fix

python3Packages.rfc6555: remove obsolete input
This commit is contained in:
Fabian Affolter 2022-04-21 12:22:30 +02:00 committed by GitHub
commit bbda6177c2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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