Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / python-osc / default.nix
blobb82549955bdad0602a790adf733d6060239578ac
1 { lib
2 , buildPythonPackage
3 , fetchPypi
5 # build-system
6 , setuptools
8 # tests
9 , pytestCheckHook
12 buildPythonPackage rec {
13   pname = "python-osc";
14   version = "1.8.3";
15   pyproject = true;
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-pc4bpWyNgt9Ryz8pRrXdM6cFInkazEuFZOYtKyCtnKo=";
20   };
22   nativeBuildInputs = [
23     setuptools
24   ];
26   pythonImportsCheck = [
27     "pythonosc"
28   ];
30   nativeCheckInputs = [
31     pytestCheckHook
32   ];
34   meta = with lib; {
35     description = "Open Sound Control server and client in pure python";
36     homepage = "https://github.com/attwad/python-osc";
37     changelog = "https://github.com/attwad/python-osc/blob/v${version}/CHANGELOG.md";
38     license = licenses.unlicense;
39     maintainers = with maintainers; [ anirrudh ];
40   };