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