linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / dataclasses-json / default.nix
blob36430a29ef0f0cf795fefb060cca51b7cd6ffa52
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , stringcase
5 , typing-inspect
6 , marshmallow-enum
7 }:
9 buildPythonPackage rec {
10   pname = "dataclasses-json";
11   version = "0.5.2";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "56ec931959ede74b5dedf65cf20772e6a79764d20c404794cce0111c88c085ff";
16   };
18   propagatedBuildInputs = [
19     stringcase
20     typing-inspect
21     marshmallow-enum
22   ];
24   meta = with lib; {
25     description = "Simple API for encoding and decoding dataclasses to and from JSON";
26     homepage = "https://github.com/lidatong/dataclasses-json";
27     license = licenses.mit;
28     maintainers = with maintainers; [ albakham ];
29   };