mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-19 03:14:03 +00:00
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:
commit
45a3e6b3f9
@ -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 ];
|
||||
|
Loading…
Reference in New Issue
Block a user