python3Packages.flufl_lock: 6.0 -> 7.0

This commit is contained in:
Jonathan Ringer 2022-02-07 12:17:01 -08:00
parent fc385b9d88
commit ac11071790
No known key found for this signature in database
GPG key ID: 5C841D3CFDFEC4E0

View file

@ -1,16 +1,19 @@
{ lib, buildPythonPackage, fetchPypi, pytestCheckHook
, atpublic, psutil, pytest-cov, sybil
, pdm-pep517
}:
buildPythonPackage rec {
pname = "flufl.lock";
version = "6.0";
version = "7.0";
format = "pyproject";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-/HSO5gnshktIOO9knb0RcPp53rDCE8L9URUb7mp/wkI=";
sha256 = "sha256-FBX30Z2N2WpYJC4O+5DOPLGHf7VFB0rYwcrky3GR/gE=";
};
nativeBuildInputs = [ pdm-pep517 ];
propagatedBuildInputs = [ atpublic psutil ];
checkInputs = [ pytestCheckHook pytest-cov sybil ];