Files
nixpkgs/pkgs/development/python-modules/incremental/default.nix
T

20 lines
553 B
Nix
Raw Normal View History

2017-02-09 10:08:32 -05:00
{ stdenv, buildPythonPackage, fetchurl }:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "incremental";
2017-05-27 14:24:47 +02:00
version = "17.5.0";
2017-02-09 10:08:32 -05:00
src = fetchurl {
url = "mirror://pypi/i/${pname}/${name}.tar.gz";
2017-05-27 14:24:47 +02:00
sha256 = "7b751696aaf36eebfab537e458929e194460051ccad279c72b755a167eebd4b3";
2017-02-09 10:08:32 -05:00
};
meta = with stdenv.lib; {
homepage = https://github.com/twisted/treq;
2017-02-09 10:08:32 -05:00
description = "Incremental is a small library that versions your Python projects";
license = licenses.mit;
maintainers = with maintainers; [ nand0p ];
};
}