linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / od / default.nix
blobaa275cb27a69c38d03e178a9ab5ded28849119ab
1 { lib, buildPythonPackage, fetchPypi, unittest2, repeated_test }:
3 buildPythonPackage rec {
4   pname = "od";
5   version = "1.0";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "1az30snc3w6s4k1pi7mspcv8y0kp3ihf3ly44z517nszmz9lrjfi";
10   };
12   checkInputs = [
13     repeated_test
14     unittest2
15   ];
17   meta = with lib; {
18     description = "Shorthand syntax for building OrderedDicts";
19     homepage = "https://github.com/epsy/od";
20     license = licenses.mit;
21   };