Merge pull request #187729 from fabaff/pep440-bump

This commit is contained in:
Sandro 2022-08-21 18:53:31 +02:00 committed by GitHub
commit 042ac07334
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,20 +1,27 @@
{ lib
, buildPythonPackage
, fetchPypi
, flit-core
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "pep440";
version = "0.1.0";
format = "setuptools";
version = "0.1.1";
format = "flit";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
sha256 = "m1H/yqqDiFrj6tmD9jo8nDakCBZxkBPq/HtSOXMH4ZQ=";
hash = "sha256-E9F4mHaavQKK8PYnRcnOdfW7mXcBKn1dTInCknLeNO4=";
};
nativeBuildInputs = [
flit-core
];
checkInputs = [
pytestCheckHook
];