Compare commits

..

No commits in common. "a49d9ac0ca72bce703a860582234442369b75cb8" and "e799468cdece4734fba5f0e3e7a78fce370bf98a" have entirely different histories.

2 changed files with 16 additions and 22 deletions

View file

@ -1,12 +0,0 @@
from setuptools import setup
setup(
name='@pname@',
version='@version@',
author='deter0',
description='@desc@',
install_requires=['pycairo', 'requests', 'PyGObject'],
scripts=[
'xborders',
],
)

View file

@ -7,8 +7,8 @@ with pkgs; callPackage python3Packages.buildPythonPackage rec {
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "deter0"; owner = "deter0";
repo = "xborder"; repo = "xborder";
rev = "e74ae532b9555c59d195537934fa355b3fea73c5"; rev = "8a031736c9e89a031428f33adcd42da7512d558e";
hash = "sha256-UKsseNkXest6npPqJKvKL0iBWeK+S7zynrDlyXIOmF4="; sha256 = "sha256-y+Cip5fcDqnJr0aI3jqJMTt6iCV0faunM+Gk6HFZ5iA=";
}; };
buildInputs = [ buildInputs = [
@ -28,14 +28,20 @@ with pkgs; callPackage python3Packages.buildPythonPackage rec {
pygobject3 pygobject3
]; ];
postPatch = let preBuild = ''
setup = pkgs.substituteAll { cat >setup.py <<'EOF'
src = ./setup.py; from setuptools import setup
desc = meta.description; # "description" is reserved setup(
inherit pname version; name='${pname}',
}; version='${version}',
in '' author='deter0',
ln -s ${setup} setup.py description='${meta.description}',
install_requires=['pycairo', 'requests', 'PyGObject'],
scripts=[
'xborders',
],
)
EOF
''; '';
meta = with lib; { meta = with lib; {