python310Packages.formencode: Normalize attribute, pname and dirname

This commit is contained in:
Martin Weinelt 2023-02-19 16:49:11 +00:00
parent 80192e201a
commit 985f638488
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759
5 changed files with 9 additions and 7 deletions

View File

@ -10,13 +10,14 @@
}:
buildPythonPackage rec {
pname = "FormEncode";
pname = "formencode";
version = "2.0.1";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
pname = "FormEncode";
inherit version;
sha256 = "8f2974112c2557839d5bae8b76490104c03830785d923abbdef148bf3f710035";
};

View File

@ -2,7 +2,7 @@
, buildPythonPackage
, decorator
, fetchPypi
, FormEncode
, formencode
, httpretty
, libxml2
, lxml
@ -47,7 +47,7 @@ buildPythonPackage rec {
nativeCheckInputs = [
decorator
FormEncode
formencode
httpretty
libxml2
lxml

View File

@ -2,7 +2,7 @@
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, FormEncode
, formencode
, pastedeploy
, paste
, pydispatcher
@ -23,7 +23,7 @@ buildPythonPackage rec {
};
propagatedBuildInputs = [
FormEncode
formencode
paste
pastedeploy
pydispatcher

View File

@ -95,6 +95,7 @@ mapAliases ({
flask_sqlalchemy = flask-sqlalchemy; # added 2022-07-20
flask_testing = flask-testing; # added 2022-04-25
flask_wtf = flask-wtf; # added 2022-05-24
FormEncode = formencode; # added 2023-02-19
functorch = throw "functorch is now part of the torch package and has therefore been removed. See https://github.com/pytorch/functorch/releases/tag/v1.13.0 for more info."; # added 2022-12-01
garages-amsterdam = throw "garages-amsterdam has been renamed odp-amsterdam."; # added 2023-01-04
garminconnect-ha = garminconnect; # added 2022-02-05

View File

@ -3597,7 +3597,7 @@ self: super: with self; {
fortiosapi = callPackage ../development/python-modules/fortiosapi { };
FormEncode = callPackage ../development/python-modules/FormEncode { };
formencode = callPackage ../development/python-modules/formencode { };
foundationdb51 = callPackage ../servers/foundationdb/python.nix { foundationdb = pkgs.foundationdb51; };
foundationdb52 = callPackage ../servers/foundationdb/python.nix { foundationdb = pkgs.foundationdb52; };