6443b8ecb7
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-urwidtrees/versions
27 lines
500 B
Nix
27 lines
500 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, urwid
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "urwidtrees";
|
|
version = "1.0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pazz";
|
|
repo = "urwidtrees";
|
|
rev = "${version}";
|
|
sha256 = "1n1kpidvkdnsqyb82vlvk78gmly96kh8351lqxn2pzgwwns6fml2";
|
|
};
|
|
|
|
propagatedBuildInputs = [ urwid ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Tree widgets for urwid";
|
|
homepage = https://github.com/pazz/urwidtrees;
|
|
license = licenses.gpl3;
|
|
};
|
|
|
|
}
|