blob: 1beb12afa753301409fb21f4cf917df1b0272512 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "survey";
version = "5.4.2";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-4vnjtSbw2y/o+fSWDl/CqTEZkl0jULGOLURdZ0BpKvY=";
};
build-system = [
setuptools
setuptools-scm
];
pythonImportsCheck = [ "survey" ];
meta = {
description = "Simple library for creating beautiful interactive prompts";
homepage = "https://github.com/Exahilosys/survey";
changelog = "https://github.com/Exahilosys/survey/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ sfrijters ];
};
}
|