Merge pull request #137540 from SuperSandro2000/setuptools-rust

python39Packages.setuptools-rust: adopt
This commit is contained in:
Robert Scott
2021-09-12 17:10:52 +01:00
committed by GitHub
@@ -23,17 +23,16 @@ buildPythonPackage rec {
propagatedBuildInputs = [ semantic-version setuptools toml ];
# no tests
doCheck = false;
pythonImportsCheck = [ "setuptools_rust" ];
passthru.tests.pyo3 = callPackage ./pyo3-test {};
passthru.tests.pyo3 = callPackage ./pyo3-test { };
meta = with lib; {
description = "Setuptools plugin for Rust support";
homepage = "https://github.com/PyO3/setuptools-rust";
changelog = "https://github.com/PyO3/setuptools-rust/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ ];
maintainers = with maintainers; [ SuperSandro2000 ];
};
}