Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / bson / default.nix
blobafcb46f5d6510672b661a814495212918f9e1e41
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , python-dateutil
5 , six
6 }:
8 buildPythonPackage rec {
9   pname = "bson";
10   version = "0.5.10";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "14355m3dchz446fl54ym78bn4wi20hddx1614f8rl4sin0m1nlfn";
16   };
18   propagatedBuildInputs = [
19     python-dateutil
20     six
21   ];
23   # 0.5.10 was not tagged, https://github.com/py-bson/bson/issues/108
24   doCheck = false;
26   pythonImportsCheck = [ "bson" ];
28   meta = with lib; {
29     description = "BSON codec for Python";
30     homepage = "https://github.com/py-bson/bson";
31     license = licenses.asl20;
32     maintainers = with maintainers; [ fab ];
33   };