1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-04 19:45:54 +00:00
nixpkgs/pkgs/development/python-modules/sh/default.nix
2018-12-21 14:00:06 -05:00

30 lines
706 B
Nix

{ stdenv, buildPythonPackage, fetchPypi, python, coverage, lsof, glibcLocales }:
buildPythonPackage rec {
pname = "sh";
version = "1.12.14";
src = fetchPypi {
inherit pname version;
sha256 = "1z2hx357xp3v4cv44xmqp7lli3frndqpyfmpbxf7n76h7s1zaaxm";
};
postPatch = ''
sed -i 's#/usr/bin/env python#${python.interpreter}#' test.py
'';
checkInputs = [ coverage lsof glibcLocales ];
# A test needs the HOME directory to be different from $TMPDIR.
preCheck = ''
export LC_ALL="en_US.UTF-8"
HOME=$(mktemp -d)
'';
meta = {
description = "Python subprocess interface";
homepage = https://pypi.python.org/pypi/sh/;
license = stdenv.lib.licenses.mit;
};
}