tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
poetry2conda: Migrate out of python package set
Martin Weinelt
3 years ago
a2b1eaa0
32f2486b
+4
-11
4 changed files
expand all
collapse all
unified
split
pkgs
tools
package-management
poetry2conda
default.nix
top-level
all-packages.nix
python-aliases.nix
python-packages.nix
+2
-8
pkgs/development/python-modules/poetry2conda/default.nix
pkgs/tools/package-management/poetry2conda/default.nix
···
1
{ lib
2
-
, buildPythonApplication
3
, fetchFromGitHub
4
-
, pytest-mock
5
-
, pytestCheckHook
6
-
, toml
7
-
, poetry
8
-
, poetry-semver
9
-
, pyyaml
10
}:
11
12
-
buildPythonApplication rec {
13
pname = "poetry2conda";
14
version = "0.3.0";
15
···
1
{ lib
0
2
, fetchFromGitHub
3
+
, python3
0
0
0
0
0
4
}:
5
6
+
with python3.pkgs; buildPythonApplication rec {
7
pname = "poetry2conda";
8
version = "0.3.0";
9
+1
-1
pkgs/top-level/all-packages.nix
···
15500
inherit pkgs lib;
15501
};
15502
15503
-
poetry2conda = python3Packages.callPackage ../development/python-modules/poetry2conda { };
15504
15505
pip-audit = callPackage ../development/tools/pip-audit {};
15506
···
15500
inherit pkgs lib;
15501
};
15502
15503
+
poetry2conda = callPackage ../tools/package-management/poetry2conda { };
15504
15505
pip-audit = callPackage ../development/tools/pip-audit {};
15506
+1
pkgs/top-level/python-aliases.nix
···
109
pathpy = path; # added 2022-04-12
110
pdfminer = pdfminer-six; # added 2022-05-25
111
pep257 = pydocstyle; # added 2022-04-12
0
112
poster3 = throw "poster3 is unmaintained and source is no longer available"; # added 2023-05-29
113
postorius = throw "Please use pkgs.mailmanPackages.postorius"; # added 2022-04-29
114
powerlineMemSegment = powerline-mem-segment; # added 2021-10-08
···
109
pathpy = path; # added 2022-04-12
110
pdfminer = pdfminer-six; # added 2022-05-25
111
pep257 = pydocstyle; # added 2022-04-12
112
+
poetry2conda = throw "poetry2conda was promoted to a top-level attribute"; # Added 2022-10-02
113
poster3 = throw "poster3 is unmaintained and source is no longer available"; # added 2023-05-29
114
postorius = throw "Please use pkgs.mailmanPackages.postorius"; # added 2022-04-29
115
powerlineMemSegment = powerline-mem-segment; # added 2021-10-08
-2
pkgs/top-level/python-packages.nix
···
7157
7158
poetry-semver = callPackage ../development/python-modules/poetry-semver { };
7159
7160
-
poetry2conda = callPackage ../development/python-modules/poetry2conda { };
7161
-
7162
poezio = callPackage ../applications/networking/instant-messengers/poezio { };
7163
7164
polars = callPackage ../development/python-modules/polars { };
···
7157
7158
poetry-semver = callPackage ../development/python-modules/poetry-semver { };
7159
0
0
7160
poezio = callPackage ../applications/networking/instant-messengers/poezio { };
7161
7162
polars = callPackage ../development/python-modules/polars { };