mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +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,
|
||||
python3,
|
||||
fetchFromGitHub,
|
||||
python3Packages,
|
||||
}:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "git-dumper";
|
||||
version = "1.0.8";
|
||||
pyproject = true;
|
||||
|
@ -17,10 +17,10 @@ python3.pkgs.buildPythonApplication rec {
|
|||
};
|
||||
|
||||
build-system = [
|
||||
python3.pkgs.setuptools
|
||||
python3Packages.setuptools
|
||||
];
|
||||
|
||||
dependencies = with python3.pkgs; [
|
||||
dependencies = with python3Packages; [
|
||||
beautifulsoup4
|
||||
dulwich
|
||||
pysocks
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue