mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
python39Packages.werkzeug: normalise pname
This commit is contained in:
parent
ebe2232383
commit
618d441bca
1 changed files with 4 additions and 3 deletions
|
@ -8,15 +8,16 @@
|
|||
, pytest-timeout
|
||||
, pytest-xprocess
|
||||
, pytestCheckHook
|
||||
}:
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "Werkzeug";
|
||||
pname = "werkzeug";
|
||||
version = "2.0.1";
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
pname = "Werkzeug";
|
||||
inherit version;
|
||||
sha256 = "0hlwawnn8c41f254qify5jnjj8xb97n294h09bqimzqhs0qdpq8x";
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue