python.pkgs.whichcraft: move expression
This commit is contained in:
committed by
Frederik Rietdijk
parent
6713108307
commit
991a60e186
19
pkgs/development/python-modules/whichcraft/default.nix
Normal file
19
pkgs/development/python-modules/whichcraft/default.nix
Normal file
@@ -0,0 +1,19 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, pytest }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "whichcraft";
|
||||
version = "0.1.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "5df20674e0a90028b5633417510f0001b63bc0f345ab3cbb184dd4b221d125ec";
|
||||
};
|
||||
|
||||
checkInputs = [ pytest ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = https://github.com/pydanny/whichcraft;
|
||||
description = "Cross-platform cross-python shutil.which functionality";
|
||||
license = licenses.bsd3;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user