1{ lib, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "incremental";
5 version = "21.3.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "02f5de5aff48f6b9f665d99d48bfc7ec03b6e3943210de7cfc88856d755d6f57";
10 };
11
12 meta = with lib; {
13 homepage = "https://github.com/twisted/treq";
14 description = "Incremental is a small library that versions your Python projects";
15 license = licenses.mit;
16 maintainers = with maintainers; [ ];
17 };
18}