mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-13 21:25:30 +03:00
Merge pull request #256816 from Artturin/pythondocpython3packages
This commit is contained in:
commit
6f726bd5aa
1 changed files with 7 additions and 7 deletions
|
@ -285,11 +285,11 @@ specifying an interpreter version), like this:
|
||||||
|
|
||||||
```nix
|
```nix
|
||||||
{ lib
|
{ lib
|
||||||
, python3
|
, python3Packages
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
}:
|
}:
|
||||||
|
|
||||||
python3.pkgs.buildPythonApplication rec {
|
python3Packages.buildPythonApplication rec {
|
||||||
pname = "luigi";
|
pname = "luigi";
|
||||||
version = "2.7.9";
|
version = "2.7.9";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
@ -300,13 +300,13 @@ python3.pkgs.buildPythonApplication rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
python3.pkgs.setuptools
|
python3Packages.setuptools
|
||||||
python3.pkgs.wheel
|
python3Packages.wheel
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = with python3.pkgs; [
|
propagatedBuildInputs = [
|
||||||
tornado
|
python3Packages.tornado
|
||||||
python-daemon
|
python3Packages.python-daemon
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue