nixpkgs/pkgs/development/python-modules/invoke/default.nix

31 lines
558 B
Nix
Raw Normal View History

{ lib
, bash
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "invoke";
2020-06-06 08:47:14 +02:00
version = "1.4.1";
src = fetchPypi {
inherit pname version;
2020-06-06 08:47:14 +02:00
sha256 = "de3f23bfe669e3db1085789fd859eb8ca8e0c5d9c20811e2407fa042e8a5e15d";
};
patchPhase = ''
sed -e 's|/bin/bash|${bash}/bin/bash|g' -i invoke/config.py
'';
# errors with vendored libs
doCheck = false;
# has vendored python2 code
dontUsePythonRecompileBytecode = true;
meta = {
description = "Pythonic task execution";
license = lib.licenses.bsd2;
};
}