mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
python3Packages.strct: support setuptools 82
This commit is contained in:
parent
0f0b57829b
commit
fd5878533a
1 changed files with 10 additions and 0 deletions
|
|
@ -1,6 +1,7 @@
|
|||
{
|
||||
lib,
|
||||
fetchFromGitHub,
|
||||
fetchpatch,
|
||||
buildPythonPackage,
|
||||
setuptools,
|
||||
pytestCheckHook,
|
||||
|
|
@ -20,6 +21,15 @@ buildPythonPackage rec {
|
|||
hash = "sha256-4IykGzy1PTrRAbx/sdtzL4My4cDSlplL9rOFBcLbaB8=";
|
||||
};
|
||||
|
||||
patches = [
|
||||
(fetchpatch {
|
||||
name = "support-setuptools-82.patch";
|
||||
url = "https://github.com/shaypal5/strct/commit/5005a939b590cd992d985128a2c1dba230a7fe41.patch";
|
||||
includes = [ "setup.py" ];
|
||||
hash = "sha256-0vRRst79G6JZZ+IzBR7rr85nOo0qY0ikVBz4Lvauwbc=";
|
||||
})
|
||||
];
|
||||
|
||||
# don't append .dev0 to version
|
||||
env.RELEASING_PROCESS = "1";
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue