Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / jsonable / default.nix
blob075930f645e54db554821f17315f1a48c21b47ed
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , nose
5 , pytestCheckHook
6 }:
8 buildPythonPackage rec {
9   pname = "jsonable";
10   version = "0.3.1";
11   format = "setuptools";
13   src = fetchFromGitHub {
14     owner = "halfak";
15     repo = "python-jsonable";
16     rev = "refs/tags/${version}";
17     hash = "sha256-3FIzG2djSZOPDdoYeKqs3obQjgHrFtyp0sdBwZakkHA=";
18   };
20   nativeCheckInputs = [
21     nose
22     pytestCheckHook
23   ];
25   pythonImportsCheck = [ "jsonable" ];
27   meta = with lib; {
28     description = "Provides an abstract base class and utilities for defining trivially JSONable python objects";
29     homepage = "https://github.com/halfak/python-jsonable";
30     license = licenses.mit;
31     maintainers = with maintainers; [ GaetanLepage ];
32   };