summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/bureautomation/deps/pyhaversion.nix
blob: a75c6a976cba3f89786a5a985a0420d5530dc236 (plain)
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
29
30
31
32
33
{ lib
, buildPythonPackage
, fetchpatch
, fetchPypi
, aiohttp
, async-timeout
}:

buildPythonPackage rec {
  pname = "pyhaversion";
  version = "2.2.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "72b65aa25d7b2dbb839a4d0218df2005c2335e93526035904d365bb668030b9f";
  };
  patches = [
    (fetchpatch { url = "https://github.com/makefu/pyhaversion/commit/f3bdc38970272cd345c2cfbde3037ea492ca27c4.patch";
    sha256 =
      "1rhq4z7mdgnwhwpf5fmarnbc1ba3qysk1wqjdr0hvbzi8vmvbfcc";})
  ];
  doCheck = false;
  propagatedBuildInputs = [
    aiohttp
    async-timeout
  ];

  meta = with lib; {
    description = "";
    homepage = https://github.com/ludeeus/pyhaversion;
    # maintainers = [ maintainers. ];
  };
}