mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +03:00
use version agnostic buildPythonApplication
Co-authored-by: Ethan Carter Edwards <ethan@ethancedwards.com>
This commit is contained in:
parent
0cf7edeb08
commit
ec744fd472
1 changed files with 4 additions and 4 deletions
|
@ -1,10 +1,10 @@
|
||||||
{
|
{
|
||||||
lib,
|
lib,
|
||||||
python3,
|
|
||||||
fetchFromGitHub,
|
fetchFromGitHub,
|
||||||
|
python3Packages,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
python3.pkgs.buildPythonApplication rec {
|
python3Packages.buildPythonApplication rec {
|
||||||
pname = "git-dumper";
|
pname = "git-dumper";
|
||||||
version = "1.0.8";
|
version = "1.0.8";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
@ -17,10 +17,10 @@ python3.pkgs.buildPythonApplication rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
build-system = [
|
build-system = [
|
||||||
python3.pkgs.setuptools
|
python3Packages.setuptools
|
||||||
];
|
];
|
||||||
|
|
||||||
dependencies = with python3.pkgs; [
|
dependencies = with python3Packages; [
|
||||||
beautifulsoup4
|
beautifulsoup4
|
||||||
dulwich
|
dulwich
|
||||||
pysocks
|
pysocks
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue