about summary refs log tree commit diff
path: root/pkgs/development/python-modules/incremental/default.nix
blob: b8565a8b75876cefcbbc41bec3f7593ac9ba28f2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, buildPythonPackage, fetchurl }:

buildPythonPackage rec {
  name = "${pname}-${version}";
  pname = "incremental";
  version = "16.10.1";

  src = fetchurl {
    url = "mirror://pypi/i/${pname}/${name}.tar.gz";
    sha256 = "0hh382gsj5lfl3fsabblk2djngl4n5yy90xakinasyn41rr6pb8l";
  };

  meta = with stdenv.lib; {
    homepage = http://github.com/twisted/treq;
    description = "Incremental is a small library that versions your Python projects";
    license = licenses.mit;
    maintainers = with maintainers; [ nand0p ];
  };
}