python310Packages.formencode: Normalize attribute, pname and dirname
This commit is contained in:
parent
80192e201a
commit
985f638488
@ -10,13 +10,14 @@
|
|||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "FormEncode";
|
pname = "formencode";
|
||||||
version = "2.0.1";
|
version = "2.0.1";
|
||||||
|
|
||||||
disabled = isPy27;
|
disabled = isPy27;
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
pname = "FormEncode";
|
||||||
|
inherit version;
|
||||||
sha256 = "8f2974112c2557839d5bae8b76490104c03830785d923abbdef148bf3f710035";
|
sha256 = "8f2974112c2557839d5bae8b76490104c03830785d923abbdef148bf3f710035";
|
||||||
};
|
};
|
||||||
|
|
@ -2,7 +2,7 @@
|
|||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, decorator
|
, decorator
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, FormEncode
|
, formencode
|
||||||
, httpretty
|
, httpretty
|
||||||
, libxml2
|
, libxml2
|
||||||
, lxml
|
, lxml
|
||||||
@ -47,7 +47,7 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
nativeCheckInputs = [
|
nativeCheckInputs = [
|
||||||
decorator
|
decorator
|
||||||
FormEncode
|
formencode
|
||||||
httpretty
|
httpretty
|
||||||
libxml2
|
libxml2
|
||||||
lxml
|
lxml
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
, FormEncode
|
, formencode
|
||||||
, pastedeploy
|
, pastedeploy
|
||||||
, paste
|
, paste
|
||||||
, pydispatcher
|
, pydispatcher
|
||||||
@ -23,7 +23,7 @@ buildPythonPackage rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
FormEncode
|
formencode
|
||||||
paste
|
paste
|
||||||
pastedeploy
|
pastedeploy
|
||||||
pydispatcher
|
pydispatcher
|
||||||
|
@ -95,6 +95,7 @@ mapAliases ({
|
|||||||
flask_sqlalchemy = flask-sqlalchemy; # added 2022-07-20
|
flask_sqlalchemy = flask-sqlalchemy; # added 2022-07-20
|
||||||
flask_testing = flask-testing; # added 2022-04-25
|
flask_testing = flask-testing; # added 2022-04-25
|
||||||
flask_wtf = flask-wtf; # added 2022-05-24
|
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
|
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
|
garages-amsterdam = throw "garages-amsterdam has been renamed odp-amsterdam."; # added 2023-01-04
|
||||||
garminconnect-ha = garminconnect; # added 2022-02-05
|
garminconnect-ha = garminconnect; # added 2022-02-05
|
||||||
|
@ -3597,7 +3597,7 @@ self: super: with self; {
|
|||||||
|
|
||||||
fortiosapi = callPackage ../development/python-modules/fortiosapi { };
|
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; };
|
foundationdb51 = callPackage ../servers/foundationdb/python.nix { foundationdb = pkgs.foundationdb51; };
|
||||||
foundationdb52 = callPackage ../servers/foundationdb/python.nix { foundationdb = pkgs.foundationdb52; };
|
foundationdb52 = callPackage ../servers/foundationdb/python.nix { foundationdb = pkgs.foundationdb52; };
|
||||||
|
Loading…
Reference in New Issue
Block a user