Merge pull request #269820 from mweinelt/python-stringy-licenses
python311Packages: translate stringy licenses
This commit is contained in:
@@ -32,10 +32,10 @@ buildPythonPackage rec {
|
||||
|
||||
nativeCheckInputs = [ pytestCheckHook ];
|
||||
|
||||
meta = {
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/pytoolz/cytoolz/";
|
||||
description = "Cython implementation of Toolz: High performance functional utilities";
|
||||
license = "licenses.bsd3";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with lib.maintainers; [ fridh ];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -1,20 +0,0 @@
|
||||
{ buildPythonPackage, fetchPypi
|
||||
, requests, six, pyopenssl }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "paypalrestsdk";
|
||||
version = "1.13.2";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-kZUfNtsw1oW5ceFASYSRo1bPHfjv9xZWYDrKTtcs81o=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ requests six pyopenssl ];
|
||||
|
||||
meta = {
|
||||
homepage = "https://developer.paypal.com/";
|
||||
description = "Python APIs to create, process and manage payment";
|
||||
license = "PayPal SDK License";
|
||||
};
|
||||
}
|
||||
@@ -31,7 +31,7 @@ import ../pillow/generic.nix (rec {
|
||||
|
||||
Currently, Pillow-SIMD can be compiled with SSE4 (default) or AVX2 support.
|
||||
'';
|
||||
license = "http://www.pythonware.com/products/pil/license.htm";
|
||||
license = licenses.hpnd;
|
||||
maintainers = with maintainers; [ ];
|
||||
};
|
||||
} // args )
|
||||
|
||||
@@ -18,7 +18,7 @@ buildPythonPackage rec {
|
||||
meta = with lib; {
|
||||
description = "Python library for reading and writing collada documents";
|
||||
homepage = "http://pycollada.github.io/";
|
||||
license = "BSD"; # they don't specify which BSD variant
|
||||
license = licenses.bsd3;
|
||||
platforms = with platforms; linux ++ darwin;
|
||||
maintainers = with maintainers; [ bjornfor ];
|
||||
};
|
||||
|
||||
@@ -69,7 +69,7 @@ buildPythonPackage rec {
|
||||
Python 2.5) ctypes library, and is provided under an extremely
|
||||
liberal BSD-style Open-Source license.
|
||||
'';
|
||||
license = "BSD-style";
|
||||
license = licenses.bsd3;
|
||||
platforms = platforms.mesaPlatforms;
|
||||
};
|
||||
|
||||
|
||||
@@ -264,6 +264,7 @@ mapAliases ({
|
||||
pam = python-pam; # added 2020-09-07.
|
||||
PasteDeploy = pastedeploy; # added 2021-10-07
|
||||
pathpy = path; # added 2022-04-12
|
||||
paypalrestsdk = throw "paypalrestsdk was removed, the upstream repo was archived back in 2020"; # Added 2023-11-25
|
||||
pdfposter = throw "pdfposter was promoted to a top-level attribute"; # Added 2023-06-29
|
||||
pdfminer = pdfminer-six; # added 2022-05-25
|
||||
pep257 = pydocstyle; # added 2022-04-12
|
||||
|
||||
@@ -8859,8 +8859,6 @@ self: super: with self; {
|
||||
|
||||
paypalhttp = callPackage ../development/python-modules/paypalhttp { };
|
||||
|
||||
paypalrestsdk = callPackage ../development/python-modules/paypalrestsdk { };
|
||||
|
||||
pbkdf2 = callPackage ../development/python-modules/pbkdf2 { };
|
||||
|
||||
pbr = callPackage ../development/python-modules/pbr { };
|
||||
|
||||
Reference in New Issue
Block a user