summary refs log tree commit diff
path: root/pkgs/tools/package-management/nox/default.nix
blob: 32af196c46e8fe7aca0e2b081f78c854c0fc40a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ lib, pythonPackages, fetchurl }:

pythonPackages.buildPythonPackage rec {
  name = "nox-${version}";
  version = "0.0.1";
  namePrefix = "";

  src = fetchurl {
    url = "https://pypi.python.org/packages/source/n/nix-nox/nix-nox-${version}.tar.gz";
    sha256 = "1s1jhickdhym70qrb5h4qxq1mvkpwgdppqpfb2jnpfaf1az6c207";
  };

  buildInputs = [ pythonPackages.pbr ];

  pythonPath = with pythonPackages; [
      dogpile_cache
      click
      requests2
      characteristic
    ];

  meta = {
    homepage = https://github.com/madjar/nox;
    description = "Tools to make nix nicer to use";
    maintainers = [ lib.maintainers.madjar ];
    platforms = lib.platforms.all;
  };
}