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
17 oil = callPackage ./oildev.nix {
22 configargparse = python27.pkgs.buildPythonPackage rec {
23 pname = "configargparse";
26 src = fetchFromGitHub {
28 repo = "ConfigArgParse";
30 sha256 = "1dsai4bilkp2biy9swfdx2z0k4akw4lpvx12flmk00r80hzgbglz";
35 pythonImportsCheck = [ "configargparse" ];
38 description = "Drop-in replacement for argparse";
39 homepage = "https://github.com/bw2/ConfigArgParse";
40 license = licenses.mit;
43 six = python27.pkgs.buildPythonPackage rec {
48 inherit pname version;
49 sha256 = "1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926";
55 description = "Python 2 and 3 compatibility library";
56 homepage = "https://pypi.python.org/pypi/six/";
57 license = lib.licenses.mit;
60 typing = python27.pkgs.buildPythonPackage rec {
65 inherit pname version;
66 sha256 = "13b4ad211f54ddbf93e5901a9967b1e07720c1d1b78d596ac6a439641aa1b130";
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;