2018-06-23 13:27:58 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi }:
|
2017-02-09 15:08:32 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "incremental";
|
2017-05-27 12:24:47 +00:00
|
|
|
version = "17.5.0";
|
2017-02-09 15:08:32 +00:00
|
|
|
|
2018-06-23 13:27:58 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2017-05-27 12:24:47 +00:00
|
|
|
sha256 = "7b751696aaf36eebfab537e458929e194460051ccad279c72b755a167eebd4b3";
|
2017-02-09 15:08:32 +00:00
|
|
|
};
|
|
|
|
|
2018-06-23 13:27:58 +00:00
|
|
|
meta = with lib; {
|
2017-11-10 21:13:27 +00:00
|
|
|
homepage = https://github.com/twisted/treq;
|
2017-02-09 15:08:32 +00:00
|
|
|
description = "Incremental is a small library that versions your Python projects";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ nand0p ];
|
|
|
|
};
|
|
|
|
}
|