-
-
Notifications
You must be signed in to change notification settings - Fork 14.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pythonPackage.backports-shutil-which: init at 3.5.1
(cherry picked from commit 80b64a2)
- Loading branch information
Showing
2 changed files
with
23 additions
and
0 deletions.
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
pkgs/development/python-modules/backports-shutil-which/default.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ stdenv, fetchPypi, buildPythonPackage }: | ||
|
||
buildPythonPackage rec { | ||
pname = "backports.shutil_which"; | ||
version = "3.5.1"; | ||
|
||
src = fetchPypi { | ||
inherit pname version; | ||
sha256 = "16sa3adkf71862cb9pk747pw80a2f1v5m915ijb4fgj309xrlhyx"; | ||
}; | ||
|
||
# Tests fail: "ValueError: underlying buffer has been detached" | ||
doCheck = false; | ||
|
||
meta = with stdenv.lib; { | ||
description = "Backport of shutil.which from Python 3.3"; | ||
homepage = https://github.com/minrk/backports.shutil_which; | ||
license = licenses.psfl; | ||
maintainers = with maintainers; [ jluttine ]; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters