ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / dm-env / default.nix
blob92c234c215c389618ad20245b64206997990e81f
1 { lib
2 , fetchPypi
3 , buildPythonPackage
4 , dm-tree
5 , numpy
6 , absl-py
7 , nose }:
9 buildPythonPackage rec {
10   pname = "dm-env";
11   version = "1.5";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "sha256-Pv2ZsGUlY1mVB8QV1ItRiWyIvi8BwrYlCvi6tRVx41M=";
16   };
18   buildInputs = [
19     absl-py
20     dm-tree
21     numpy
22   ];
24   checkInputs = [
25     nose
26   ];
28   pythonImportsCheck = [
29     "dm_env"
30   ];
32   meta = with lib; {
33     description = "Pure Python client for Apache Kafka";
34     homepage = "https://github.com/dpkp/kafka-python";
35     license = licenses.asl20;
36     maintainers = with maintainers; [ onny ];
37   };