From 5a1c6f1d63c2a1debe221c33f20aa0ee8c4dcfa7 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Thu, 16 Dec 2021 23:40:21 +0100 Subject: python3Packages.shiv: init at 1.0.1 --- pkgs/development/python-modules/shiv/default.nix | 34 ++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 pkgs/development/python-modules/shiv/default.nix (limited to 'pkgs/development') diff --git a/pkgs/development/python-modules/shiv/default.nix b/pkgs/development/python-modules/shiv/default.nix new file mode 100644 index 0000000000000..14cb688be4643 --- /dev/null +++ b/pkgs/development/python-modules/shiv/default.nix @@ -0,0 +1,34 @@ +{ 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 ]; + }; +} -- cgit 1.4.1