legends-of-equestria: init at 2024.05.01 (#296316)
[NixPkgs.git] / pkgs / development / misc / resholve / deps.nix
blob577a6ed1bb90f66e9ec192285f51665d8d440515
2   lib,
3   callPackage,
4   fetchFromGitHub,
5   python27,
6   fetchPypi,
7   ...
8 }:
11   Notes on specific dependencies:
12   - if/when python2.7 is removed from nixpkgs, this may need to figure
13   out how to build oil's vendored python2
16 rec {
17   oil = callPackage ./oildev.nix {
18     inherit python27;
19     inherit six;
20     inherit typing;
21   };
22   configargparse = python27.pkgs.buildPythonPackage rec {
23     pname = "configargparse";
24     version = "1.5.3";
26     src = fetchFromGitHub {
27       owner = "bw2";
28       repo = "ConfigArgParse";
29       rev = "v${version}";
30       sha256 = "1dsai4bilkp2biy9swfdx2z0k4akw4lpvx12flmk00r80hzgbglz";
31     };
33     doCheck = false;
35     pythonImportsCheck = [ "configargparse" ];
37     meta = with lib; {
38       description = "Drop-in replacement for argparse";
39       homepage = "https://github.com/bw2/ConfigArgParse";
40       license = licenses.mit;
41     };
42   };
43   six = python27.pkgs.buildPythonPackage rec {
44     pname = "six";
45     version = "1.16.0";
47     src = fetchPypi {
48       inherit pname version;
49       sha256 = "1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926";
50     };
52     doCheck = false;
54     meta = {
55       description = "Python 2 and 3 compatibility library";
56       homepage = "https://pypi.python.org/pypi/six/";
57       license = lib.licenses.mit;
58     };
59   };
60   typing = python27.pkgs.buildPythonPackage rec {
61     pname = "typing";
62     version = "3.10.0.0";
64     src = fetchPypi {
65       inherit pname version;
66       sha256 = "13b4ad211f54ddbf93e5901a9967b1e07720c1d1b78d596ac6a439641aa1b130";
67     };
69     doCheck = false;
71     meta = with lib; {
72       description = "Backport of typing module to Python versions older than 3.5";
73       homepage = "https://docs.python.org/3/library/typing.html";
74       license = licenses.psfl;
75     };
76   };