Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / stickytape / default.nix
blob99e63ebd3dfb28407460298c7971e282a9086f58
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , nose
5 , pytestCheckHook
6 , pythonOlder
7 , spur
8 }:
10 buildPythonPackage rec {
11   pname = "stickytape";
12   version = "0.2.1";
13   format = "setuptools";
15   disabled = pythonOlder "3.4";
17   src = fetchFromGitHub {
18     owner = "mwilliamson";
19     repo = pname;
20     rev = version;
21     hash = "sha256-KOZN9oxPb91l8QVU07I49UMNXqox8j+oekA1fMtj6l8=";
22   };
24   # Tests have additional requirements
25   doCheck = false;
27   pythonImportsCheck = [
28     "stickytape"
29   ];
31   meta = with lib; {
32     description = "Python module to convert Python packages into a single script";
33     mainProgram = "stickytape";
34     homepage = "https://github.com/mwilliamson/stickytape";
35     license = with licenses; [ bsd2 ];
36     maintainers = with maintainers; [ fab ];
37   };