Merge pull request #137540 from SuperSandro2000/setuptools-rust

python39Packages.setuptools-rust: adopt

authored by

Robert Scott and committed by
GitHub
0517de2c ab9c7819

+2 -3
+2 -3
pkgs/development/python-modules/setuptools-rust/default.nix
··· 23 23 24 24 propagatedBuildInputs = [ semantic-version setuptools toml ]; 25 25 26 - # no tests 27 26 doCheck = false; 28 27 pythonImportsCheck = [ "setuptools_rust" ]; 29 28 30 - passthru.tests.pyo3 = callPackage ./pyo3-test {}; 29 + passthru.tests.pyo3 = callPackage ./pyo3-test { }; 31 30 32 31 meta = with lib; { 33 32 description = "Setuptools plugin for Rust support"; 34 33 homepage = "https://github.com/PyO3/setuptools-rust"; 35 34 changelog = "https://github.com/PyO3/setuptools-rust/releases/tag/v${version}"; 36 35 license = licenses.mit; 37 - maintainers = with maintainers; [ ]; 36 + maintainers = with maintainers; [ SuperSandro2000 ]; 38 37 }; 39 38 }