4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
53 lines
1.0 KiB
Nix
53 lines
1.0 KiB
Nix
{ lib, stdenv, buildPythonPackage, fetchPypi, pythonAtLeast
|
|
, docker
|
|
, escapism
|
|
, jinja2
|
|
, pkgs-docker
|
|
, python-json-logger
|
|
, pyyaml
|
|
, ruamel_yaml
|
|
, semver
|
|
, toml
|
|
, traitlets
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "0.11.0";
|
|
pname = "jupyter-repo2docker";
|
|
disabled = !(pythonAtLeast "3.4");
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "7fc2edf0cda1e46f2e7553bfb84a47e6d141b8dac393268ef01ee3504ca6ad94";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
docker
|
|
escapism
|
|
jinja2
|
|
pkgs-docker
|
|
python-json-logger
|
|
ruamel_yaml
|
|
semver
|
|
toml
|
|
traitlets
|
|
];
|
|
|
|
# tests not packaged with pypi release
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"repo2docker"
|
|
"repo2docker.app"
|
|
"repo2docker.utils"
|
|
"repo2docker.contentproviders.base"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://repo2docker.readthedocs.io/en/latest/";
|
|
description = "Repo2docker: Turn code repositories into Jupyter enabled Docker Images";
|
|
license = licenses.bsdOriginal;
|
|
maintainers = [ maintainers.costrouc ];
|
|
};
|
|
}
|