mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 14:10:33 +03:00
Merge pull request #249837 from tjni/corrscope
corrscope: remove setuptools dependency
This commit is contained in:
commit
203e459c67
1 changed files with 11 additions and 1 deletions
|
@ -2,6 +2,7 @@
|
|||
, mkDerivationWith
|
||||
, python3Packages
|
||||
, fetchFromGitHub
|
||||
, fetchpatch
|
||||
, wrapQtAppsHook
|
||||
, ffmpeg
|
||||
, qtbase
|
||||
|
@ -18,9 +19,18 @@ mkDerivationWith python3Packages.buildPythonApplication rec {
|
|||
owner = "corrscope";
|
||||
repo = "corrscope";
|
||||
rev = version;
|
||||
sha256 = "sha256-pS7upOYZAjgR3lWxny8TNZEj3Rrbg+L90ANZWFO9UPQ=";
|
||||
hash = "sha256-pS7upOYZAjgR3lWxny8TNZEj3Rrbg+L90ANZWFO9UPQ=";
|
||||
};
|
||||
|
||||
patches = [
|
||||
# https://github.com/corrscope/corrscope/pull/446
|
||||
(fetchpatch {
|
||||
name = "remove-setuptools-dependency.patch";
|
||||
url = "https://github.com/corrscope/corrscope/commit/70b123173a7a012d9f29d6d3a8960b85caf6cc79.patch";
|
||||
hash = "sha256-YCtb7v8cGP0pdceAKeoempnRzw+LRKQqDb3AfN0z/9s=";
|
||||
})
|
||||
];
|
||||
|
||||
pythonRelaxDeps = [ "attrs" ];
|
||||
|
||||
nativeBuildInputs = [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue