python310Packages.easyprocess: Normalize attribute and pname
This commit is contained in:
parent
225dbad50b
commit
6325bb1019
5 changed files with 9 additions and 7 deletions
|
@ -1,11 +1,12 @@
|
|||
{ lib, buildPythonPackage, fetchPypi }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "EasyProcess";
|
||||
pname = "easyprocess";
|
||||
version = "1.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
pname = "EasyProcess";
|
||||
inherit version;
|
||||
sha256 = "sha256-iFiYMCpXqrlIlz6LXTKkIpOSufstmGqx1P/VkOW6kOw=";
|
||||
};
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, EasyProcess
|
||||
, easyprocess
|
||||
, path
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
|
@ -20,7 +20,7 @@ buildPythonPackage rec {
|
|||
};
|
||||
|
||||
nativeCheckInputs = [
|
||||
EasyProcess
|
||||
easyprocess
|
||||
path
|
||||
pytestCheckHook
|
||||
];
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, isPy3k
|
||||
, EasyProcess
|
||||
, easyprocess
|
||||
, entrypoint2
|
||||
, jeepney
|
||||
, mss
|
||||
|
@ -19,7 +19,7 @@ buildPythonPackage rec {
|
|||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
EasyProcess
|
||||
easyprocess
|
||||
entrypoint2
|
||||
pillow
|
||||
] ++ lib.optionals (isPy3k) [
|
||||
|
|
|
@ -82,6 +82,7 @@ mapAliases ({
|
|||
dogpile_cache = dogpile-cache; # added 2021-10-28
|
||||
dogpile-core = throw "dogpile-core is no longer maintained, use dogpile-cache instead"; # added 2021-11-20
|
||||
eebrightbox = throw "eebrightbox is unmaintained upstream and has therefore been removed"; # added 2022-02-03
|
||||
EasyProcess = easyprocess; # added 2023-02-19
|
||||
email_validator = email-validator; # added 2022-06-22
|
||||
face_recognition = face-recognition; # added 2022-10-15
|
||||
face_recognition_models = face-recognition-models; # added 2022-10-15
|
||||
|
|
|
@ -2928,7 +2928,7 @@ self: super: with self; {
|
|||
|
||||
easyocr = callPackage ../development/python-modules/easyocr { };
|
||||
|
||||
EasyProcess = callPackage ../development/python-modules/easyprocess { };
|
||||
easyprocess = callPackage ../development/python-modules/easyprocess { };
|
||||
|
||||
easy-thumbnails = callPackage ../development/python-modules/easy-thumbnails { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue