evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / bencode-py / default.nix
blob3620f34fa701e04856fc45615f9fe9c686b995e5
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pbr,
6   pytestCheckHook,
7 }:
8 buildPythonPackage rec {
9   pname = "beconde-py";
10   version = "4.0.0";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit version;
15     pname = "bencode.py";
16     hash = "sha256-KiTM2hclpRplCJPQtjJgE4NZ6qKZu256CZYTUKKm4Fw=";
17   };
19   pythonImportsCheck = [ "bencodepy" ];
21   nativeBuildInputs = [ pbr ];
23   nativeCheckInputs = [ pytestCheckHook ];
25   meta = with lib; {
26     description = "Simple bencode parser (for Python 2, Python 3 and PyPy)";
27     homepage = "https://github.com/fuzeman/bencode.py";
28     license = licenses.bitTorrent11;
29     maintainers = with maintainers; [ vamega ];
30   };