Merge pull request #126533 from oxzi/python-flask-httpauth-4.4.0

pythonPackages.flask-httpauth: 4.3.0 -> 4.4.0
This commit is contained in:
Fabian Affolter 2021-06-11 11:35:27 +02:00 committed by GitHub
commit 45a3e6b3f9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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