Merge pull request #115009 from SuperSandro2000/setuptools-rust

pythonPackages.setuptools-rust: cleanup, add pythonImportsCheck
This commit is contained in:
Sandro 2021-03-03 19:48:27 +01:00 committed by GitHub
commit 40115d4cf3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,14 +4,13 @@
, isPy27 , isPy27
, semantic-version , semantic-version
, setuptools , setuptools
, setuptools_scm , setuptools-scm
, toml , toml
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "setuptools-rust"; pname = "setuptools-rust";
version = "0.11.6"; version = "0.11.6";
disabled = isPy27; disabled = isPy27;
src = fetchPypi { src = fetchPypi {
@ -19,10 +18,14 @@ buildPythonPackage rec {
sha256 = "a5b5954909cbc5d66b914ee6763f81fa2610916041c7266105a469f504a7c4ca"; sha256 = "a5b5954909cbc5d66b914ee6763f81fa2610916041c7266105a469f504a7c4ca";
}; };
nativeBuildInputs = [ setuptools_scm ]; nativeBuildInputs = [ setuptools-scm ];
propagatedBuildInputs = [ semantic-version setuptools toml ]; propagatedBuildInputs = [ semantic-version setuptools toml ];
# no tests
doCheck = false;
pythonImportsCheck = [ "setuptools_rust" ];
meta = with lib; { meta = with lib; {
description = "Setuptools plugin for Rust support"; description = "Setuptools plugin for Rust support";
homepage = "https://github.com/PyO3/setuptools-rust"; homepage = "https://github.com/PyO3/setuptools-rust";