about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2024-04-28 18:47:30 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2024-04-28 18:49:31 +0200
commitc3882e3a6bd8d3fb6a0f6f6c2be02432af9024a0 (patch)
tree10752563cbe915ef1bd53eb3d50603da1e8240e2 /pkgs/development
parent448512cca0b9e03273bbd0e050fa1195a00e8de5 (diff)
Revert "python312Packages.dulwich: refactor"
This reverts commit 5cef65b22d9e6434997ca5bcccf55c06c40d3f9d.
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/dulwich/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/dulwich/default.nix b/pkgs/development/python-modules/dulwich/default.nix
index 7e7e6fe10b9df..49789421af346 100644
--- a/pkgs/development/python-modules/dulwich/default.nix
+++ b/pkgs/development/python-modules/dulwich/default.nix
@@ -20,9 +20,9 @@
 }:
 
 buildPythonPackage rec {
-  pname = "dulwich";
   version = "0.21.7";
-  pyproject = true;
+  pname = "dulwich";
+  format = "setuptools";
 
   disabled = pythonOlder "3.7";
 
@@ -38,7 +38,7 @@ buildPythonPackage rec {
     setuptools-rust
   ];
 
-  dependencies = [
+  propagatedBuildInputs = [
     certifi
     urllib3
   ];