My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/whichcraft/default.nix

26 lines
570 B

{ lib, buildPythonPackage, fetchPypi, pytest, glibcLocales }:
buildPythonPackage rec {
pname = "whichcraft";
version = "0.6.1";
src = fetchPypi {
inherit pname version;
sha256 = "11yfkzyplizdgndy34vyd5qlmr1n5mxis3a3svxmx8fnccdvknxc";
};
LC_ALL="en_US.utf-8";
buildInputs = [ glibcLocales ];
checkInputs = [ pytest ];
checkPhase = ''
py.test
'';
meta = with lib; {
homepage = "https://github.com/pydanny/whichcraft";
description = "Cross-platform cross-python shutil.which functionality";
license = licenses.bsd3;
};
}