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/shiv/default.nix

35 lines
709 B

{ stdenv
, lib
, buildPythonPackage
, fetchPypi
, click
, pip
, setuptools
, wheel
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "shiv";
version = "1.0.1";
format = "pyproject";
src = fetchPypi {
inherit pname version;
sha256 = "ec16095a0565906536af7f5e57771e9ae7a061b646ed63ad66ebbc70c30f4d2a";
};
propagatedBuildInputs = [ click pip setuptools wheel ];
pythonImportsCheck = [ "shiv" ];
checkInputs = [ pytestCheckHook ];
meta = with lib; {
description = "Command line utility for building fully self contained Python zipapps";
homepage = "https://github.com/linkedin/shiv";
license = licenses.bsd2;
maintainers = with maintainers; [ prusnak ];
};
}