python39Packages.setuptools-rust: adopt

This commit is contained in:
Sandro Jäckel 2021-09-12 17:34:29 +02:00
parent 3ca823aa9a
commit ff8e690f97
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -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 ];
};
}