mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-23 13:24:29 +00:00
Merge pull request #266826 from natsukium/setuptools-trial
python311Packages.setuptools-trial: rename from setuptoolsTrial
This commit is contained in:
commit
e0036cd696
@ -2,13 +2,14 @@
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
, setuptools
|
||||
, twisted
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "setuptools-trial";
|
||||
version = "0.6.0";
|
||||
format = "setuptools";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
@ -18,6 +19,10 @@ buildPythonPackage rec {
|
||||
hash = "sha256-FCIPj3YcSLoeJSbwhxlQd89U+tcJizgs4iBCLw/1mxI=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
twisted
|
||||
];
|
@ -24,7 +24,7 @@
|
||||
, moto
|
||||
, markdown
|
||||
, lz4
|
||||
, setuptoolsTrial
|
||||
, setuptools-trial
|
||||
, buildbot-worker
|
||||
, buildbot-plugins
|
||||
, buildbot-pkg
|
||||
@ -103,7 +103,7 @@ let
|
||||
moto
|
||||
markdown
|
||||
lz4
|
||||
setuptoolsTrial
|
||||
setuptools-trial
|
||||
buildbot-worker
|
||||
buildbot-pkg
|
||||
buildbot-plugins.www
|
||||
|
@ -15,7 +15,7 @@
|
||||
# tests
|
||||
, parameterized
|
||||
, psutil
|
||||
, setuptoolsTrial
|
||||
, setuptools-trial
|
||||
|
||||
# passthru
|
||||
, nixosTests
|
||||
@ -36,7 +36,7 @@ buildPythonPackage (rec {
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptoolsTrial
|
||||
setuptools-trial
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
|
@ -393,6 +393,7 @@ mapAliases ({
|
||||
selectors34 = throw "selectors34 has been removed: functionality provided by Python itself; archived by upstream."; # added 2021-06-10
|
||||
sequoia = throw "python3Packages.sequoia was replaced by pysequoia - built from a dedicated repository, with a new API."; # added 2023-06-24
|
||||
setuptools_scm = setuptools-scm; # added 2021-06-03
|
||||
setuptoolsTrial = setuptools-trial; # added 2023-11-11
|
||||
sharkiqpy = sharkiq; # added 2022-05-21
|
||||
ssh-mitm = throw "ssh-mitm was removed in favor of the top-level ssh-mitm"; # added 2023-05-09
|
||||
smart_open = smart-open; # added 2021-03-14
|
||||
|
@ -12774,7 +12774,7 @@ self: super: with self; {
|
||||
|
||||
setuptools-scm-git-archive = callPackage ../development/python-modules/setuptools-scm-git-archive { };
|
||||
|
||||
setuptoolsTrial = callPackage ../development/python-modules/setuptoolstrial { };
|
||||
setuptools-trial = callPackage ../development/python-modules/setuptools-trial { };
|
||||
|
||||
seventeentrack = callPackage ../development/python-modules/seventeentrack { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user