Skip to content

Commit

Permalink
pythonPackage.backports-shutil-which: init at 3.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jluttine committed Sep 12, 2018
1 parent c9bf7f6 commit 80b64a2
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
21 changes: 21 additions & 0 deletions pkgs/development/python-modules/backports-shutil-which/default.nix
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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,8 @@ in {

backports_csv = callPackage ../development/python-modules/backports_csv {};

backports-shutil-which = callPackage ../development/python-modules/backports-shutil-which {};

bap = callPackage ../development/python-modules/bap {
bap = pkgs.ocamlPackages.bap;
};
Expand Down

0 comments on commit 80b64a2

Please sign in to comment.