python310Packages.dashing: specify dependencies as function args

This commit is contained in:
Martin Weinelt 2023-07-28 16:08:38 +02:00
parent c7437c5836
commit e66ea733b0
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -1,21 +1,23 @@
{ lib
, python3
, buildPythonPackage
, fetchPypi
, pythonOlder
, blessed
}:
python3.pkgs.buildPythonPackage rec {
buildPythonPackage rec {
pname = "dashing";
version = "0.1.0";
format = "setuptools";
disabled = python3.pythonOlder "3.7";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-JRRgjg8pp3Xb0bERFWEhnOg9U8+kuqL+QQH6uE/Vbxs=";
};
propagatedBuildInputs = with python3.pkgs; [
propagatedBuildInputs = [
blessed
];