pythonPackages.flask-httpauth: 4.3.0 -> 4.4.0

Support for Python 2 was dropped for this release:
e690ce5682
This commit is contained in:
Alvar Penning 2021-06-10 22:09:28 +02:00
parent 489959099f
commit 2a7b1e82fd

View File

@ -1,12 +1,14 @@
{ lib, python, buildPythonPackage, fetchPypi, flask }:
{ lib, python, isPy3k, buildPythonPackage, fetchPypi, flask }:
buildPythonPackage rec {
pname = "Flask-HTTPAuth";
version = "4.3.0";
version = "4.4.0";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "05j1mckwhgicrlj4j7ni2rhcf9w4i7phll06jbjjyvs3rj1l4q1f";
sha256 = "0fl1if91hg2c92b6sic7h2vhxxvb06ri7wflmwp0pfiwbaisgamw";
};
propagatedBuildInputs = [ flask ];